60p82u21t54k 1.0.17 → 1.0.19
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 +3 -1
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/model/getSetting/getGetSettingResponse.d.ts +1 -0
- package/dist/model/getSetting/getGetSettingResponse.d.ts.map +1 -1
- package/dist/model/getSetting/type.d.ts +3 -1
- package/dist/model/getSetting/type.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -5308,6 +5308,7 @@ var SettingCategory = /* @__PURE__ */ ((SettingCategory2) => {
|
|
|
5308
5308
|
SettingCategory2["socialFirebaseApikey"] = "social_firebase_apikey";
|
|
5309
5309
|
SettingCategory2["socialFirebaseProjectId"] = "social_firebase_projectid";
|
|
5310
5310
|
SettingCategory2["socialFirebaseAppId"] = "social_firebase_appid";
|
|
5311
|
+
SettingCategory2["userDetailMobileValidation"] = "userdetailmobilevalidation";
|
|
5311
5312
|
return SettingCategory2;
|
|
5312
5313
|
})(SettingCategory || {});
|
|
5313
5314
|
const modifyVipListRequest = (requests) => {
|
|
@@ -5836,7 +5837,8 @@ const getGetSettingResponse = (raw) => {
|
|
|
5836
5837
|
agentLinkRedirectPath: raw.agentlink_first_redirect ?? "",
|
|
5837
5838
|
socialFirebaseApikey: raw.social_firebase_apikey ?? "",
|
|
5838
5839
|
socialFirebaseProjectId: raw.social_firebase_projectid ?? "",
|
|
5839
|
-
socialFirebaseAppId: raw.social_firebase_appid ?? ""
|
|
5840
|
+
socialFirebaseAppId: raw.social_firebase_appid ?? "",
|
|
5841
|
+
userDetailMobileValidation: raw.userdetailmobilevalidation ? raw.userdetailmobilevalidation === "1" : false
|
|
5840
5842
|
};
|
|
5841
5843
|
};
|
|
5842
5844
|
const modifyGetSettingRequest = (requests) => {
|