@getanyapi/sdk 0.15.0 → 0.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +16 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +183 -67
- package/dist/index.d.ts +183 -67
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2261,6 +2261,22 @@ var GithubNamespace = class {
|
|
|
2261
2261
|
userRepositories(input, options) {
|
|
2262
2262
|
return this._core.run("github.user_repositories", input, options);
|
|
2263
2263
|
}
|
|
2264
|
+
/**
|
|
2265
|
+
* Iterate every result of GitHub User Repositories across pages.
|
|
2266
|
+
*
|
|
2267
|
+
* Yields items directly; call `.pages()` on the return value to walk whole
|
|
2268
|
+
* result pages instead (each carries its own costUsd).
|
|
2269
|
+
*/
|
|
2270
|
+
iterUserRepositories(input, options) {
|
|
2271
|
+
return paginate(
|
|
2272
|
+
this._core,
|
|
2273
|
+
"github.user_repositories",
|
|
2274
|
+
input,
|
|
2275
|
+
"repos",
|
|
2276
|
+
false,
|
|
2277
|
+
options
|
|
2278
|
+
);
|
|
2279
|
+
}
|
|
2264
2280
|
};
|
|
2265
2281
|
|
|
2266
2282
|
// src/generated/platforms/glassdoor.ts
|