@dpgradio/creative 5.5.0 → 5.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dpgradio/creative",
3
- "version": "5.5.0",
3
+ "version": "5.5.1",
4
4
  "description": "Support package for standalone Javascript applications",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -8,6 +8,9 @@ export default class PaginatedResponse {
8
8
  }
9
9
 
10
10
  async fetchNext() {
11
+ if (!this.pagination.next) {
12
+ return []
13
+ }
11
14
  const response = await api.onVersion(null).request().get(this.pagination.next)
12
15
  this.pagination.next = response.pagination.next
13
16
  this.data = [...this.data, ...response[this.dataKey]]
@@ -16,6 +19,9 @@ export default class PaginatedResponse {
16
19
  }
17
20
 
18
21
  async fetchPrevious() {
22
+ if (!this.pagination.previous) {
23
+ return []
24
+ }
19
25
  const response = await api.onVersion(null).request().get(this.pagination.previous)
20
26
  this.pagination.previous = response.pagination.previous
21
27
  this.data = [...response[this.dataKey], ...this.data]