Solved
Installing a Package on ACC with the InstallPackage xtkBuilder method
I have a package I want to import using the method below that is described in the API docs
var params =
{builder:
{package:
{ ... }
}
}
NLWS.xtkBuilder.InstallPackage(params)If i have a package that was generated (let's say package.xml). How exactly do i pass it into this function to install the package without errors?
Currently I can install the package through Tools -> Advanced -> Import Package and it works.