1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-06 04:00:05 +00:00

fix(SASJS): sasjs server deployment with auth + refresh token bug

This commit is contained in:
Saad Jutt
2022-02-11 21:04:51 +05:00
parent 97c3cfd574
commit f48089cb8c
2 changed files with 25 additions and 4 deletions

View File

@@ -865,8 +865,15 @@ export default class SASjs {
)
}
public async deployToSASjs(members: [FolderMember, ServiceMember]) {
return await this.sasJSApiClient?.deploy(members, this.sasjsConfig.appLoc)
public async deployToSASjs(
members: [FolderMember, ServiceMember],
authConfig?: AuthConfig
) {
return await this.sasJSApiClient?.deploy(
members,
this.sasjsConfig.appLoc,
authConfig
)
}
public async executeJobSASjs(query: ExecutionQuery) {