//native
type Phrase = {
token: string
baseUrl: string
}
/**
* Export to code repository
* Export translations from Phrase Strings to repository provider according to the
.phrase.yml file within the code repository.
*Export is done asynchronously and may take several seconds depending on the project size.*
*/
export async function main(auth: Phrase, account_id: string, id: string) {
const url = new URL(`${auth.baseUrl}/accounts/${account_id}/repo_syncs/${id}/export`)
const response = await fetch(url, {
method: 'POST',
headers: {
Authorization: 'ApiToken ' + auth.token
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 235 days ago