bbeach
02/28/2022, 6:33 PMSteve Goldberg
03/01/2022, 11:11 AMconst hostnameStep1 = this.vm ? hostName : `rest${molecule}.<http://netsuite.com|netsuite.com>`;
to
const hostnameStep1 = this.vm ? hostName : `system${molecule}.<http://netsuite.com|netsuite.com>`;
bbeach
03/01/2022, 3:16 PMSwathi
03/01/2022, 3:34 PMbbeach
03/01/2022, 3:47 PMSwathi
03/01/2022, 3:54 PMbbeach
03/01/2022, 4:19 PMeminero
03/02/2022, 3:36 AMbbeach
03/02/2022, 2:46 PMEmily Pascas
03/07/2022, 10:47 PMbbeach
03/08/2022, 3:11 PMMelissa
03/11/2022, 2:20 PMbbeach
03/14/2022, 2:12 PMEmily Pascas
03/14/2022, 10:57 PMbbeach
04/11/2022, 6:41 PMvar hostnameStep1 = this.vm ? hostName : "rest" + molecule + ".<http://netsuite.com|netsuite.com>";
to:
var hostnameStep1 = this.vm ? hostName : "system" + molecule + ".<http://netsuite.com|netsuite.com>";
Then, run this command: npm i oauth1
In our case we had made changes to that file, but without running the install command for oauth1 again, they were not applied.
Hope this helps.