@frontastic/common 2.26.0 → 2.28.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# common Changelog
|
|
2
2
|
|
|
3
|
+
## `2.28.0` (2022-03-22)
|
|
4
|
+
|
|
5
|
+
* refactor(FP-1122): Make logic for handling single-attribute sorting the same as multi-attribute
|
|
6
|
+
* feat(FP-1122): Add sort by custom attribute functionality to Algolia integration
|
|
7
|
+
|
|
8
|
+
## `2.27.1` (2022-03-17)
|
|
9
|
+
|
|
10
|
+
* fix: fix issue from studio-deployment-branch
|
|
11
|
+
|
|
12
|
+
## `2.27.0` (2022-03-15)
|
|
13
|
+
|
|
14
|
+
* feat(FP-1486): upgrade Shopify version to latest stable version 2022-01
|
|
15
|
+
|
|
3
16
|
## `2.26.0` (2022-03-10)
|
|
4
17
|
|
|
5
18
|
* feat: add GraphCMS client factory
|
package/composer.json
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
* [__construct()](#__construct)
|
|
8
8
|
* [setLanguage()](#setlanguage)
|
|
9
|
+
* [setSortIndex()](#setsortindex)
|
|
9
10
|
* [search()](#search)
|
|
10
11
|
* [getSettings()](#getsettings)
|
|
11
12
|
|
|
@@ -39,6 +40,20 @@ Argument|Type|Default|Description
|
|
|
39
40
|
|
|
40
41
|
Return Value: `self`
|
|
41
42
|
|
|
43
|
+
### setSortIndex()
|
|
44
|
+
|
|
45
|
+
```php
|
|
46
|
+
public function setSortIndex(
|
|
47
|
+
array $sortAttributes
|
|
48
|
+
): self
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Argument|Type|Default|Description
|
|
52
|
+
--------|----|-------|-----------
|
|
53
|
+
`$sortAttributes`|`array`||
|
|
54
|
+
|
|
55
|
+
Return Value: `self`
|
|
56
|
+
|
|
42
57
|
### search()
|
|
43
58
|
|
|
44
59
|
```php
|