From cbd2d14d086289d83b3058515f72de521f699173 Mon Sep 17 00:00:00 2001 From: stainless-bot Date: Wed, 30 Oct 2024 18:52:47 +0000 Subject: [PATCH] chore: rebuild project due to codegen change --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 57874a66..c059a85b 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,7 @@ Note that requests which time out will be [retried twice by default](#retries). ## Auto-pagination List methods in the Writer API are paginated. -You can use `for await … of` syntax to iterate through items across all pages: +You can use the `for await … of` syntax to iterate through items across all pages: ```ts async function fetchAllGraphs(params) { @@ -175,7 +175,7 @@ async function fetchAllGraphs(params) { } ``` -Alternatively, you can make request a single page at a time: +Alternatively, you can request a single page at a time: ```ts let page = await client.graphs.list(); diff --git a/package.json b/package.json index ee5ecce3..451549fc 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "license": "Apache-2.0", "packageManager": "yarn@1.22.22", "files": [ - "*" + "**/*" ], "private": false, "scripts": {