@faststore/core 2.1.77 → 2.1.80

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.
@@ -31,6 +31,8 @@ Route (pages) Size First Load JS
31
31
  ├ ● /500 1.21 kB 114 kB
32
32
  ├ ● /account 670 B 113 kB
33
33
  ├ λ /api/graphql 0 B 77.9 kB
34
+ ├ λ /api/health/live 0 B 77.9 kB
35
+ ├ λ /api/health/ready 0 B 77.9 kB
34
36
  ├ λ /api/preview 0 B 77.9 kB
35
37
  ├ ● /checkout 657 B 113 kB
36
38
  ├ ● /login 1.09 kB 114 kB
@@ -39,7 +41,7 @@ Route (pages) Size First Load JS
39
41
  ├ chunks/framework-dfd14d7ce6600b03.js 45.3 kB
40
42
  ├ chunks/main-fd466221927468fd.js 23.9 kB
41
43
  ├ chunks/pages/_app-895781b1c7b5bf56.js 6.45 kB
42
- ├ chunks/webpack-a076b4e56af09d34.js 2.29 kB
44
+ ├ chunks/webpack-dd4b54b18df673ff.js 2.29 kB
43
45
  └ css/9e76fef1c9ca89af.css 3.06 kB
44
46
 
45
47
  λ (Server) server-side renders at runtime (uses getInitialProps or getServerSideProps)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faststore/core",
3
- "version": "2.1.77",
3
+ "version": "2.1.80",
4
4
  "license": "MIT",
5
5
  "browserslist": "supports es6-module and not dead",
6
6
  "scripts": {
@@ -29,11 +29,11 @@
29
29
  "@envelop/graphql-jit": "^1.1.1",
30
30
  "@envelop/parser-cache": "^2.2.0",
31
31
  "@envelop/validation-cache": "^2.2.0",
32
- "@faststore/api": "^2.1.68",
33
- "@faststore/components": "^2.1.77",
34
- "@faststore/graphql-utils": "^2.1.53",
35
- "@faststore/sdk": "^2.1.53",
36
- "@faststore/ui": "^2.1.77",
32
+ "@faststore/api": "^2.1.78",
33
+ "@faststore/components": "^2.1.80",
34
+ "@faststore/graphql-utils": "^2.1.78",
35
+ "@faststore/sdk": "^2.1.78",
36
+ "@faststore/ui": "^2.1.80",
37
37
  "@types/react": "^18.0.14",
38
38
  "@vtex/client-cms": "^0.2.12",
39
39
  "autoprefixer": "^10.4.0",
@@ -61,7 +61,7 @@
61
61
  },
62
62
  "devDependencies": {
63
63
  "@cypress/code-coverage": "^3.9.10",
64
- "@faststore/eslint-config": "^2.1.53",
64
+ "@faststore/eslint-config": "^2.1.78",
65
65
  "@faststore/lighthouse": "^1.12.32",
66
66
  "@graphql-codegen/cli": "^2.6.2",
67
67
  "@graphql-codegen/typescript": "^2.5.1",
@@ -110,5 +110,5 @@
110
110
  "msw": {
111
111
  "workerDirectory": "public"
112
112
  },
113
- "gitHead": "e0e12e579c7f581162cca65d18028fe50324a85a"
113
+ "gitHead": "0a0a8bdc10237ad3091a4ea9ac5c9dea1a14a18b"
114
114
  }
@@ -0,0 +1,5 @@
1
+ import type { NextApiRequest, NextApiResponse } from 'next'
2
+
3
+ export default function handler(_req: NextApiRequest, res: NextApiResponse) {
4
+ res.status(200).send('Ok')
5
+ }
@@ -0,0 +1,5 @@
1
+ import type { NextApiRequest, NextApiResponse } from 'next'
2
+
3
+ export default function handler(_req: NextApiRequest, res: NextApiResponse) {
4
+ res.status(200).send('Ok')
5
+ }