@arrowsphere/api-client 3.380.0 → 3.380.1
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
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [3.380.1] - 2026.06.30
|
|
7
|
+
### Fixed
|
|
8
|
+
- [partners] Fix custom billing field sorting: send `perPage`, `sortBy` and `orderBy` query parameters as is camelCase
|
|
9
|
+
|
|
6
10
|
## [3.380.0] - 2026.06.26
|
|
7
11
|
### Added
|
|
8
12
|
- [register] Add `bundleUuid` and `bundleArrowSphereSku` to `CreateOrderInputFields` structure
|
|
@@ -144,9 +144,9 @@ export declare enum GetCustomFieldListFiltersFields {
|
|
|
144
144
|
COLUMN_CREATED_BY = "createdBy",
|
|
145
145
|
COLUMN_CREATED_AT = "createdAt",
|
|
146
146
|
COLUMN_PAGE = "page",
|
|
147
|
-
COLUMN_PER_PAGE = "
|
|
148
|
-
COLUMN_SORT_BY = "
|
|
149
|
-
COLUMN_ORDER_BY = "
|
|
147
|
+
COLUMN_PER_PAGE = "perPage",
|
|
148
|
+
COLUMN_SORT_BY = "sortBy",
|
|
149
|
+
COLUMN_ORDER_BY = "orderBy"
|
|
150
150
|
}
|
|
151
151
|
export declare enum CustomFieldSortByEnum {
|
|
152
152
|
LABEL = "label",
|
|
@@ -90,9 +90,9 @@ var GetCustomFieldListFiltersFields;
|
|
|
90
90
|
GetCustomFieldListFiltersFields["COLUMN_CREATED_BY"] = "createdBy";
|
|
91
91
|
GetCustomFieldListFiltersFields["COLUMN_CREATED_AT"] = "createdAt";
|
|
92
92
|
GetCustomFieldListFiltersFields["COLUMN_PAGE"] = "page";
|
|
93
|
-
GetCustomFieldListFiltersFields["COLUMN_PER_PAGE"] = "
|
|
94
|
-
GetCustomFieldListFiltersFields["COLUMN_SORT_BY"] = "
|
|
95
|
-
GetCustomFieldListFiltersFields["COLUMN_ORDER_BY"] = "
|
|
93
|
+
GetCustomFieldListFiltersFields["COLUMN_PER_PAGE"] = "perPage";
|
|
94
|
+
GetCustomFieldListFiltersFields["COLUMN_SORT_BY"] = "sortBy";
|
|
95
|
+
GetCustomFieldListFiltersFields["COLUMN_ORDER_BY"] = "orderBy";
|
|
96
96
|
})(GetCustomFieldListFiltersFields = exports.GetCustomFieldListFiltersFields || (exports.GetCustomFieldListFiltersFields = {}));
|
|
97
97
|
var CustomFieldSortByEnum;
|
|
98
98
|
(function (CustomFieldSortByEnum) {
|
package/package.json
CHANGED