hello guys, i just have a question regarding video stream
hello guys, i just have a question regarding video stream
hasNextPage comes up false every time
hasNextPageexport async function getAllDeploymentsForBranch({ branch }: { branch: string }) {
const cloudflare = new Cloudflare({
apiKey: CLOUDFLARE_API_TOKEN,
});
const deployments: Cloudflare.Pages.Projects.Deployment[] = [];
const request = cloudflare.pages.projects.deployments.list(CLOUDFLARE_PAGES_PROJECT_NAME, {
account_id: CLOUDFLARE_ACCOUNT_ID,
})
for await (const deployment of request) {
if (deployment.deployment_trigger?.metadata?.branch === branch) {
deployments.push(deployment);
}
}
return deployments;
}