60p82u21t54k 1.2.2 → 1.2.3
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/dist/60p82u21t54k.cjs.js +1 -1
- package/dist/60p82u21t54k.es.js +11 -1
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/model/getSetting/getGetSettingResponse.d.ts +2 -0
- package/dist/model/getSetting/getGetSettingResponse.d.ts.map +1 -1
- package/dist/model/getSetting/type.d.ts +9 -1
- package/dist/model/getSetting/type.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -1571,6 +1571,8 @@ var SettingCategory = /* @__PURE__ */ ((SettingCategory2) => {
|
|
|
1571
1571
|
SettingCategory2["socialUsernameLoginStatus"] = "social_username_login_status";
|
|
1572
1572
|
SettingCategory2["cocoEntrance"] = "coco_entrance";
|
|
1573
1573
|
SettingCategory2["cocoDomain"] = "coco_domain";
|
|
1574
|
+
SettingCategory2["depositMethod"] = "deposit_method";
|
|
1575
|
+
SettingCategory2["withdrawMethod"] = "withdraw_method";
|
|
1574
1576
|
return SettingCategory2;
|
|
1575
1577
|
})(SettingCategory || {});
|
|
1576
1578
|
const modifyVipListRequest = (requests) => {
|
|
@@ -2125,7 +2127,15 @@ const getGetSettingResponse = (raw) => {
|
|
|
2125
2127
|
socialPhoneLoginStatus: raw.social_phone_login_status == "1" || false,
|
|
2126
2128
|
socialUsernameLoginStatus: raw.social_username_login_status == "1" || false,
|
|
2127
2129
|
cocoEntrance: raw.coco_entrance == "1" || false,
|
|
2128
|
-
cocoDomain: (_E = raw.coco_domain) != null ? _E : ""
|
|
2130
|
+
cocoDomain: (_E = raw.coco_domain) != null ? _E : "",
|
|
2131
|
+
depositCurrency: {
|
|
2132
|
+
fiat: (Number(raw.deposit_method) & 1) > 0,
|
|
2133
|
+
crypto: (Number(raw.deposit_method) & 2) > 0
|
|
2134
|
+
},
|
|
2135
|
+
withdrawCurrency: {
|
|
2136
|
+
fiat: (Number(raw.withdraw_method) & 1) > 0,
|
|
2137
|
+
crypto: (Number(raw.withdraw_method) & 2) > 0
|
|
2138
|
+
}
|
|
2129
2139
|
};
|
|
2130
2140
|
};
|
|
2131
2141
|
const modifyGetSettingRequest = (requests) => {
|