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
@@ -582,7 +582,7 @@ declare module Backendless {
582
582
  minBound?: SortedSetBound,
583
583
  maxBound?: SortedSetBound,
584
584
  offset?: number,
585
- count?: number
585
+ pageSize?: number
586
586
  reverse?: boolean,
587
587
  withScores?: boolean
588
588
  }): Promise<Array<T>>
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * ********************************************************************************************************************
3
- * Backendless SDK for JavaScript. Version: 6.5.8
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
- count = options.count,
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 (count !== undefined && (typeof count !== 'number' || isNaN(count))) {
20019
- throw new Error('Count must be a number.');
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') {