File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -3949,6 +3949,19 @@ class API {
39493949 throw err ;
39503950 }
39513951 }
3952+ async getDeployments ( projectId ) {
3953+ try {
3954+ return await this . #requestJson( `/projects/${ projectId } /deployments/` ) ;
3955+ } catch ( err ) {
3956+ if ( err instanceof APIError && err . code === "projectNotFound" ) {
3957+ return null ;
3958+ }
3959+ throw err ;
3960+ }
3961+ }
3962+ getLogs ( projectId , deploymentId ) {
3963+ return this . #requestStream( `/projects/${ projectId } /deployments/${ deploymentId } /logs/` ) ;
3964+ }
39523965 async projectNegotiateAssets ( id , manifest ) {
39533966 return await this . #requestJson( `/projects/${ id } /assets/negotiate` , {
39543967 method : "POST" ,
Original file line number Diff line number Diff line change 1- export const VERSION = "1.4 .0" ;
1+ export const VERSION = "1.5 .0" ;
22
33export const MINIMUM_DENO_VERSION = "1.20.0" ;
You can’t perform that action at this time.
0 commit comments