From 2f1bbb2adc47e54487c37ec4c41c640e1bb55951 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Negr=C3=B3n?= Date: Fri, 15 Sep 2023 16:34:43 -0400 Subject: [PATCH] ran yarn run v1.19.1 $ ZAPIER_BASE_ENDPOINT='' node scripts/docs.js && cp -r docs ../.. Version 9 of Highlight.js has reached EOL and is no longer supported. Please upgrade or ask whatever dependency you are using to upgrade. https://github.com/highlightjs/highlight.js/issues/2877 Done in 1.97s. in packages/cli --- docs/index.html | 4 ++-- packages/cli/README.md | 4 ++-- packages/cli/docs/index.html | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/index.html b/docs/index.html index c0f30748..cadb9d60 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5513,8 +5513,8 @@

Wha ); // after fetching a page, set the returned cursor for the next page, - // or empty/null if this was the last one. - await z.cursor.set(response.nextPage); + // or an empty string if the cursor is null + await z.cursor.set(response.nextPage ?? ''); return response.items; }; diff --git a/packages/cli/README.md b/packages/cli/README.md index 56e299b2..314b437c 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -3467,8 +3467,8 @@ const perform = async (z, bundle) => { ); // after fetching a page, set the returned cursor for the next page, - // or empty/null if this was the last one. - await z.cursor.set(response.nextPage); + // or an empty string if the cursor is null + await z.cursor.set(response.nextPage ?? ''); return response.items; }; diff --git a/packages/cli/docs/index.html b/packages/cli/docs/index.html index c0f30748..cadb9d60 100644 --- a/packages/cli/docs/index.html +++ b/packages/cli/docs/index.html @@ -5513,8 +5513,8 @@

Wha ); // after fetching a page, set the returned cursor for the next page, - // or empty/null if this was the last one. - await z.cursor.set(response.nextPage); + // or an empty string if the cursor is null + await z.cursor.set(response.nextPage ?? ''); return response.items; };