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:
11
src/SASjs.ts
11
src/SASjs.ts
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user