tango-app-api-client 3.0.54-dev → 3.0.56-dev

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-client",
3
- "version": "3.0.54-dev",
3
+ "version": "3.0.56-dev",
4
4
  "description": "client",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -25,7 +25,7 @@
25
25
  "mongodb": "^6.3.0",
26
26
  "nodemon": "^3.0.3",
27
27
  "swagger-ui-express": "^5.0.0",
28
- "tango-api-schema": "^2.0.110",
28
+ "tango-api-schema": "^2.0.113",
29
29
  "tango-app-api-middleware": "^1.0.73-test",
30
30
  "winston": "^3.11.0",
31
31
  "winston-daily-rotate-file": "^5.0.0"
@@ -1742,13 +1742,13 @@ export async function clientListV1( req, res ) {
1742
1742
  'Brand Id': client.clientId,
1743
1743
  'Onboarded Stores': client.onboardedStores||0,
1744
1744
  'Installed Stores': client.installedStore || 0,
1745
- 'Progress Bar': client.ProgressBar||0,
1745
+ 'Progress Status': client.ProgressBar||0,
1746
1746
  'Active Stores': client.activeStores || 0,
1747
- 'In-Active Stores': client.activeStores || 0,
1747
+ 'In-Active Stores': client.InactiveStores || 0,
1748
1748
  'Pending Configuration': client.installedPending || 0,
1749
- 'Payment Plan': client.PaymentPlan,
1749
+ 'Payment Plan': client.PaymentPlan == 'free'?'Lifetime Free':client.PaymentPlan,
1750
1750
  'Subscription Plan': client.subscriptionPlan,
1751
- 'Processing Status': client.ProcessingStatus,
1751
+ 'Processing Status': client.ProcessingStatus=='active'?'Activated':client.ProcessingStatus?'deactive':client.ProcessingStatus,
1752
1752
  } );
1753
1753
  }
1754
1754
  await download( exportResult, res );