2025-11-13 13:13:34 -07:00

17 lines
697 B
JavaScript

// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../resource.mjs";
export class Content extends APIResource {
/**
* Fetches rendered HTML content from provided URL or HTML. Check available options
* like `gotoOptions` and `waitFor*` to control page load behaviour.
*/
create(params, options) {
const { account_id, cacheTTL, ...body } = params;
return this._client.post(`/accounts/${account_id}/browser-rendering/content`, {
query: { cacheTTL },
body,
...options,
})._thenUnwrap((obj) => obj.result);
}
}
//# sourceMappingURL=content.mjs.map