@xuda.io/account_module 1.2.51 → 1.2.53
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/index.js +20 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1430,6 +1430,26 @@ exports.get_prices = async function (uid, item) {
|
|
|
1430
1430
|
price = _conf.PRICE_OBJ.deployments[item];
|
|
1431
1431
|
break;
|
|
1432
1432
|
|
|
1433
|
+
case drive_ocr:
|
|
1434
|
+
price = _conf.PRICE_OBJ.drive_ocr_per_month;
|
|
1435
|
+
break;
|
|
1436
|
+
|
|
1437
|
+
case auto_backup:
|
|
1438
|
+
price = _conf.PRICE_OBJ.auto_backup_per_month;
|
|
1439
|
+
break;
|
|
1440
|
+
|
|
1441
|
+
case deployment_offline:
|
|
1442
|
+
price = _conf.PRICE_OBJ.deployment_offline_per_month;
|
|
1443
|
+
break;
|
|
1444
|
+
|
|
1445
|
+
case xuda_subdomain:
|
|
1446
|
+
price = _conf.PRICE_OBJ.xuda_subdomain_per_month;
|
|
1447
|
+
break;
|
|
1448
|
+
|
|
1449
|
+
case custom_domain:
|
|
1450
|
+
price = _conf.PRICE_OBJ.custom_domain_per_month;
|
|
1451
|
+
break;
|
|
1452
|
+
|
|
1433
1453
|
default:
|
|
1434
1454
|
price = 0;
|
|
1435
1455
|
break;
|