Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import wpcom from 'calypso/lib/wp';
export async function fetchP2HubP2s(
siteId: number,
options: { limit?: number } = {}
): Promise< { totalItems: number } > {
return wpcom.req.get(
{
path: '/p2/workspace/sites/all',
apiNamespace: 'wpcom/v2',
},
{
hub_id: siteId,
...options,
}
);
}