backendless 6.5.8 → 6.5.9
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/backendless.d.ts
CHANGED
package/dist/backendless.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* ********************************************************************************************************************
|
|
3
|
-
* Backendless SDK for JavaScript. Version: 6.5.
|
|
3
|
+
* Backendless SDK for JavaScript. Version: 6.5.9
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2012-2022 BACKENDLESS.COM. All Rights Reserved.
|
|
6
6
|
*
|
|
@@ -19991,7 +19991,7 @@ var SortedSetStore = /*#__PURE__*/function (_HiveStore) {
|
|
|
19991
19991
|
minBound = options.minBound,
|
|
19992
19992
|
maxBound = options.maxBound,
|
|
19993
19993
|
offset = options.offset,
|
|
19994
|
-
|
|
19994
|
+
pageSize = options.pageSize,
|
|
19995
19995
|
withScores = options.withScores,
|
|
19996
19996
|
reverse = options.reverse;
|
|
19997
19997
|
|
|
@@ -20015,8 +20015,8 @@ var SortedSetStore = /*#__PURE__*/function (_HiveStore) {
|
|
|
20015
20015
|
throw new Error('Offset must be a number.');
|
|
20016
20016
|
}
|
|
20017
20017
|
|
|
20018
|
-
if (
|
|
20019
|
-
throw new Error('
|
|
20018
|
+
if (pageSize !== undefined && (typeof pageSize !== 'number' || isNaN(pageSize))) {
|
|
20019
|
+
throw new Error('Page Size must be a number.');
|
|
20020
20020
|
}
|
|
20021
20021
|
|
|
20022
20022
|
if (withScores !== undefined && typeof withScores !== 'boolean') {
|