@faststore/core 2.0.156-alpha.0 → 2.0.157-alpha.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +4 -0
- package/faststore.config.js +1 -0
- package/package.json +3 -3
- package/src/sdk/session/index.ts +1 -0
- package/src/server/index.ts +1 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -39,7 +39,7 @@ Route (pages) Size First Load JS
|
|
|
39
39
|
+ First Load JS shared by all 80.7 kB
|
|
40
40
|
├ chunks/framework-dfd14d7ce6600b03.js 45.3 kB
|
|
41
41
|
├ chunks/main-fd466221927468fd.js 23.9 kB
|
|
42
|
-
├ chunks/pages/_app-
|
|
42
|
+
├ chunks/pages/_app-7d4879544fda78a2.js 6.45 kB
|
|
43
43
|
├ chunks/webpack-90918babbeee4949.js 2.26 kB
|
|
44
44
|
└ css/47d82dcec9a7dbc2.css 2.78 kB
|
|
45
45
|
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.0.157-alpha.0](https://github.com/vtex/faststore/compare/v2.0.156-alpha.0...v2.0.157-alpha.0) (2023-05-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @faststore/core
|
|
9
|
+
|
|
6
10
|
## [2.0.156-alpha.0](https://github.com/vtex/faststore/compare/v2.0.155-alpha.0...v2.0.156-alpha.0) (2023-05-23)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @faststore/core
|
package/faststore.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faststore/core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.157-alpha.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"browserslist": "supports es6-module and not dead",
|
|
6
6
|
"scripts": {
|
|
@@ -29,7 +29,7 @@
|
|
|
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.0.
|
|
32
|
+
"@faststore/api": "^2.0.157-alpha.0",
|
|
33
33
|
"@faststore/components": "^2.0.152-alpha.0",
|
|
34
34
|
"@faststore/graphql-utils": "^2.0.3-alpha.0",
|
|
35
35
|
"@faststore/sdk": "^2.0.156-alpha.0",
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
"msw": {
|
|
109
109
|
"workerDirectory": "public"
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "2fe3d9c5452955ce2444486eefb015a9b9921ccf"
|
|
112
112
|
}
|
package/src/sdk/session/index.ts
CHANGED
package/src/server/index.ts
CHANGED
|
@@ -29,6 +29,7 @@ const apiOptions: APIOptions = {
|
|
|
29
29
|
account: storeConfig.api.storeId,
|
|
30
30
|
environment: storeConfig.api.environment as APIOptions['environment'],
|
|
31
31
|
hideUnavailableItems: storeConfig.api.hideUnavailableItems,
|
|
32
|
+
incrementAddress: storeConfig.api.incrementAddress,
|
|
32
33
|
channel: storeConfig.session.channel,
|
|
33
34
|
locale: storeConfig.session.locale,
|
|
34
35
|
flags: {
|