Comparing version 3.25.0 to 3.25.1
{ | ||
"name": "storyblok", | ||
"version": "3.25.0", | ||
"version": "3.25.1", | ||
"description": "A simple CLI to start Storyblok from your command line.", | ||
@@ -50,3 +50,3 @@ "repository": { | ||
"engines": { | ||
"node": ">=10.0.0" | ||
"node": ">=18.0.0" | ||
}, | ||
@@ -53,0 +53,0 @@ "devDependencies": { |
@@ -17,3 +17,3 @@ <p align="center"> | ||
Make sure you have Node `>= 9.11.0` installed. | ||
Make sure you have Node `>= 18.0.0` installed. | ||
@@ -20,0 +20,0 @@ ```sh |
@@ -49,3 +49,3 @@ const chalk = require('chalk') | ||
for (let i = 2; i <= Math.ceil(entriesFirstPage.total / 25); i++) { | ||
entriesRequets.push(this.client.get(`spaces/${spaceId}/datasource_entries/?datasource_id=${datasourceId}`, { page: i })) | ||
entriesRequets.push(await this.client.get(`spaces/${spaceId}/datasource_entries/?datasource_id=${datasourceId}&page=${i}`)) | ||
} | ||
@@ -52,0 +52,0 @@ return entriesFirstPage.data.datasource_entries.concat(...(await Promise.all(entriesRequets)).map(r => r.data.datasource_entries)) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
213334