You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using extension configuration starter kit this kit working on basis of bullhorn cli, using this kit we deploy all extensions to bullhorn rest API, in that kit there is one file extension.json, in that file for field interactions if multiple interactions in same entity we can use ** to deploy all interactions no need to specify every interaction path, same way in page Interactions should be do, but it's not working like that, we need to give specify path then only it was working, this is not required functionality. The mistake happened in the Bullhorn cli they passed wrong variable in extract-extension.js in Line no:75
let interactionConfig = require(path.join(process.cwd(), interaction)).default;
This should be Like this
let interactionConfig = require(path.join(process.cwd(), file)).default;
they passed wrong variable it's not interaction it should be file variable, we tested it by changing locally it worked fine.
We are using extension configuration starter kit this kit working on basis of bullhorn cli, using this kit we deploy all extensions to bullhorn rest API, in that kit there is one file extension.json, in that file for field interactions if multiple interactions in same entity we can use ** to deploy all interactions no need to specify every interaction path, same way in page Interactions should be do, but it's not working like that, we need to give specify path then only it was working, this is not required functionality. The mistake happened in the Bullhorn cli they passed wrong variable in extract-extension.js in Line no:75
let interactionConfig = require(path.join(process.cwd(), interaction)).default;
This should be Like this
let interactionConfig = require(path.join(process.cwd(), file)).default;
they passed wrong variable it's not interaction it should be file variable, we tested it by changing locally it worked fine.
Thank you
Kethan Vemuri
[email protected]
The text was updated successfully, but these errors were encountered: