Skip to content

Commit

Permalink
ran yarn run v1.19.1
Browse files Browse the repository at this point in the history
$ 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.
highlightjs/highlight.js#2877
Done in 1.97s. in packages/cli
  • Loading branch information
Raúl Negrón committed Sep 15, 2023
1 parent d52e81d commit 2f1bbb2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/index.html
Expand Up @@ -5513,8 +5513,8 @@ <h3 id="whats-the-deal-with-pagination-when-is-it-used-and-how-does-it-work">Wha
);

<span class="hljs-comment">// after fetching a page, set the returned cursor for the next page,</span>
<span class="hljs-comment">// or empty/null if this was the last one.</span>
<span class="hljs-keyword">await</span> z.cursor.set(response.nextPage);
<span class="hljs-comment">// or an empty string if the cursor is null</span>
<span class="hljs-keyword">await</span> z.cursor.set(response.nextPage ?? <span class="hljs-string">&apos;&apos;</span>);

<span class="hljs-keyword">return</span> response.items;
};
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/README.md
Expand Up @@ -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;
};
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/docs/index.html
Expand Up @@ -5513,8 +5513,8 @@ <h3 id="whats-the-deal-with-pagination-when-is-it-used-and-how-does-it-work">Wha
);

<span class="hljs-comment">// after fetching a page, set the returned cursor for the next page,</span>
<span class="hljs-comment">// or empty/null if this was the last one.</span>
<span class="hljs-keyword">await</span> z.cursor.set(response.nextPage);
<span class="hljs-comment">// or an empty string if the cursor is null</span>
<span class="hljs-keyword">await</span> z.cursor.set(response.nextPage ?? <span class="hljs-string">&apos;&apos;</span>);

<span class="hljs-keyword">return</span> response.items;
};
Expand Down

0 comments on commit 2f1bbb2

Please sign in to comment.