tango-app-api-store-builder 1.0.0-beta-218 → 1.0.0-beta-219

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-api-store-builder",
3
- "version": "1.0.0-beta-218",
3
+ "version": "1.0.0-beta-219",
4
4
  "description": "storeBuilder",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -32,7 +32,7 @@
32
32
  "path": "^0.12.7",
33
33
  "selenium-webdriver": "^4.31.0",
34
34
  "sharp": "^0.34.1",
35
- "tango-api-schema": "^2.4.6",
35
+ "tango-api-schema": "^2.4.14",
36
36
  "tango-app-api-middleware": "3.1.48",
37
37
  "url": "^0.11.4",
38
38
  "winston": "^3.17.0",
@@ -2447,7 +2447,7 @@ export const checkPlanoExist = async ( req, res ) => {
2447
2447
  const plano = await planoService.findOne( { storeName: req.body.store } );
2448
2448
 
2449
2449
  if ( plano ) {
2450
- return res.sendSuccess( true );
2450
+ return res.sendSuccess( { rfId: plano?.isRfid ?? false } );
2451
2451
  } else {
2452
2452
  return res.sendSuccess( false );
2453
2453
  }