Final release for 1.0.6. Resolve issue with destructure on CCC PPC.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "bodyshop-desktop",
|
"name": "bodyshop-desktop",
|
||||||
"version": "1.0.6-beta.2",
|
"version": "1.0.6",
|
||||||
"description": "Shop Management System Partner",
|
"description": "Shop Management System Partner",
|
||||||
"main": "./out/main/index.js",
|
"main": "./out/main/index.js",
|
||||||
"author": "Convenient Brands, LLC",
|
"author": "Convenient Brands, LLC",
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ const handlePartsPriceChangeRequest = async (
|
|||||||
): Promise<void> => {
|
): Promise<void> => {
|
||||||
//Route handler here only.
|
//Route handler here only.
|
||||||
|
|
||||||
const { job } = req.body as { job: PpcJob };
|
const job = req.body as PpcJob;
|
||||||
try {
|
try {
|
||||||
await generatePartsPriceChange(job);
|
await generatePartsPriceChange(job);
|
||||||
res.status(200).json({ success: true });
|
res.status(200).json({ success: true });
|
||||||
|
|||||||
Reference in New Issue
Block a user