@xuda.io/account_module 1.2.52 → 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 +16 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1434,6 +1434,22 @@ exports.get_prices = async function (uid, item) {
|
|
|
1434
1434
|
price = _conf.PRICE_OBJ.drive_ocr_per_month;
|
|
1435
1435
|
break;
|
|
1436
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
|
+
|
|
1437
1453
|
default:
|
|
1438
1454
|
price = 0;
|
|
1439
1455
|
break;
|