//native
type Neondb = {
apiKey: string
}
/**
* Get a list of shared projects
* Retrieves a list of shared projects for the Neon account.
A project is the top-level object in the Neon object hierarchy.
For more information, see [Manage projects](https://neon.tech/docs/manage/projects/).
*/
export async function main(
auth: Neondb,
cursor: string | undefined,
limit: string | undefined,
search: string | undefined
) {
const url = new URL(`https://console.neon.tech/api/v2/projects/shared`)
for (const [k, v] of [
['cursor', cursor],
['limit', limit],
['search', search]
]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: 'Bearer ' + auth.apiKey
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 428 days ago