60p82u21t54k 1.0.13 → 1.0.15
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 +9 -2
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/model/getSetting/getGetSettingResponse.d.ts +3 -0
- package/dist/model/getSetting/getGetSettingResponse.d.ts.map +1 -1
- package/dist/model/getSetting/type.d.ts +7 -1
- package/dist/model/getSetting/type.d.ts.map +1 -1
- package/dist/model/getUserProfile/getGetUserProfileResponse.d.ts.map +1 -1
- package/dist/model/getUserProfile/type.d.ts +1 -0
- package/dist/model/getUserProfile/type.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -5074,7 +5074,8 @@ const getGetUserProfileResponse = (raw) => {
|
|
|
5074
5074
|
email: raw.mdUserDetail.email ?? "",
|
|
5075
5075
|
fullName: raw.mdUserDetail.firstname ?? "",
|
|
5076
5076
|
phoneNumber: raw.mdUserDetail.mobileno ?? "",
|
|
5077
|
-
profilePicUrl: raw.mdUserDetail.profile_pic ?? ""
|
|
5077
|
+
profilePicUrl: raw.mdUserDetail.profile_pic ?? "",
|
|
5078
|
+
isPhoneNumVerified: raw.mdUserDetail.isVerify == "1"
|
|
5078
5079
|
};
|
|
5079
5080
|
};
|
|
5080
5081
|
const modifyGetUserProfileRequest = (requests) => {
|
|
@@ -5296,6 +5297,9 @@ var SettingCategory = /* @__PURE__ */ ((SettingCategory2) => {
|
|
|
5296
5297
|
SettingCategory2["facebookPixelIdArr"] = "facebook_pixel_id_arr";
|
|
5297
5298
|
SettingCategory2["googleAnalyticArr"] = "google_analytic_arr";
|
|
5298
5299
|
SettingCategory2["agentLinkFirstRedirect"] = "agentlink_first_redirect";
|
|
5300
|
+
SettingCategory2["socialFirebaseApikey"] = "social_firebase_apikey";
|
|
5301
|
+
SettingCategory2["socialFirebaseProjectId"] = "social_firebase_projectid";
|
|
5302
|
+
SettingCategory2["socialFirebaseAppId"] = "social_firebase_appid";
|
|
5299
5303
|
return SettingCategory2;
|
|
5300
5304
|
})(SettingCategory || {});
|
|
5301
5305
|
const modifyVipListRequest = (requests) => {
|
|
@@ -5821,7 +5825,10 @@ const getGetSettingResponse = (raw) => {
|
|
|
5821
5825
|
facebookPixelId: raw.facebookpixelid ?? "",
|
|
5822
5826
|
facebookPixelIdArr: raw.facebook_pixel_id_arr ?? [],
|
|
5823
5827
|
googleAnalyticArr: raw.google_analytic_arr ?? [],
|
|
5824
|
-
agentLinkRedirectPath: raw.agentlink_first_redirect ?? ""
|
|
5828
|
+
agentLinkRedirectPath: raw.agentlink_first_redirect ?? "",
|
|
5829
|
+
socialFirebaseApikey: raw.social_firebase_apikey ?? "",
|
|
5830
|
+
socialFirebaseProjectId: raw.social_firebase_projectid ?? "",
|
|
5831
|
+
socialFirebaseAppId: raw.social_firebase_appid ?? ""
|
|
5825
5832
|
};
|
|
5826
5833
|
};
|
|
5827
5834
|
const modifyGetSettingRequest = (requests) => {
|