@meta-cms/next
Advanced tools
Comparing version 1.0.99 to 1.0.100
@@ -843,5 +843,5 @@ "use strict"; | ||
// ../core/client.ts | ||
var wait = () => { | ||
var wait = (n = 5e3) => { | ||
return new Promise((resolve) => { | ||
setTimeout(resolve, 5e3); | ||
setTimeout(resolve, n); | ||
}); | ||
@@ -879,4 +879,5 @@ }; | ||
const responses = await Promise.all( | ||
chunks.map((ids2) => { | ||
chunks.map(async (ids2) => { | ||
var _a, _b; | ||
await wait(1); | ||
return this.client.request( | ||
@@ -883,0 +884,0 @@ metafieldsQuery(false, { |
{ | ||
"name": "@meta-cms/next", | ||
"version": "1.0.99", | ||
"version": "1.0.100", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
50631
1597