@faststore/api 1.9.17 → 1.10.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/CHANGELOG.md +11 -0
- package/package.json +2 -2
- package/src/__generated__/schema.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
## [1.10.4](https://github.com/vtex/faststore/compare/v1.10.3...v1.10.4) (2022-07-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* @faststore/graphql-utils ([#1394](https://github.com/vtex/faststore/issues/1394)) ([ea4b483](https://github.com/vtex/faststore/commit/ea4b4832b25fe257d8c5c0c67bc09fb04dc693cf))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [1.9.17](https://github.com/vtex/faststore/compare/v1.9.16...v1.9.17) (2022-06-28)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @faststore/api
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faststore/api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"graphql": "^15.6.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "d36bb24a69f08701be27ac2f98b07905cfe2d9dc"
|
|
50
50
|
}
|
|
@@ -341,8 +341,9 @@ export type StoreFacetRange = {
|
|
|
341
341
|
key: Scalars['String'];
|
|
342
342
|
/** Facet label. */
|
|
343
343
|
label: Scalars['String'];
|
|
344
|
+
/** Maximum facet range value. */
|
|
344
345
|
max: StoreFacetValueRange;
|
|
345
|
-
/**
|
|
346
|
+
/** Minimum facet range value. */
|
|
346
347
|
min: StoreFacetValueRange;
|
|
347
348
|
};
|
|
348
349
|
|
|
@@ -367,9 +368,12 @@ export type StoreFacetValueBoolean = {
|
|
|
367
368
|
value: Scalars['String'];
|
|
368
369
|
};
|
|
369
370
|
|
|
371
|
+
/** Search facet range value information. Used for minimum and maximum range values. */
|
|
370
372
|
export type StoreFacetValueRange = {
|
|
371
373
|
__typename?: 'StoreFacetValueRange';
|
|
374
|
+
/** Search facet range absolute value. */
|
|
372
375
|
absolute: Scalars['Float'];
|
|
376
|
+
/** Search facet range selected value. */
|
|
373
377
|
selected: Scalars['Float'];
|
|
374
378
|
};
|
|
375
379
|
|