tango-app-api-client 3.0.40-dev → 3.0.41-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
|
@@ -1276,8 +1276,13 @@ export async function clientList( req, res ) {
|
|
|
1276
1276
|
list.push( {
|
|
1277
1277
|
'client Name': chunk[i]?.clientName,
|
|
1278
1278
|
'client Id': chunk[i]?.clientId,
|
|
1279
|
+
'Installation Stores Count': chunk[i]?.installedStores || 0,
|
|
1280
|
+
'Onboarded Stores Count': chunk[i]?.totalStores,
|
|
1281
|
+
'Store Progress': chunk[i]?.installedStores? `${ ( ( chunk[i]?.installedStores/ chunk[i]?.totalStores )* 100 ).toFixed( 0 )}%`: '0%',
|
|
1279
1282
|
'Active Store': chunk[i]?.activeStoreCount || 0,
|
|
1280
1283
|
'Active Camera': chunk[i]?.activeCameraCount && chunk[i]?.activeCameraCount != undefined ? chunk[i]?.activeCameraCount : 0,
|
|
1284
|
+
'Pending Stores': chunk[i]?.pendingStores || 0,
|
|
1285
|
+
'Failed Stores': chunk[i]?.failedStores || 0,
|
|
1281
1286
|
'Payment Status': chunk[i]?.paymentStatus,
|
|
1282
1287
|
'Subs Plan': chunk[i]?.subscriptionType,
|
|
1283
1288
|
'Status': chunk[i]?.status,
|