forked from adobe-rnd/aem-boilerplate-xwalk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/WWWPiramalFinanceCOM/pirama…
…lfinance into feature/bugfixes-dev
- Loading branch information
Showing
9 changed files
with
137 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,32 @@ | ||
const accessTokenURL = "https://mobileapi.pchf.in/api/mobile/access-token"; | ||
const generateOTPURL = "https://mobileapi.pchf.in/api/website/generate-otp"; | ||
// V1 API URL | ||
// const accessTokenURL = "https://mobileapi.pchf.in/api/mobile/access-token"; | ||
|
||
// V2 API URL | ||
const accessTokenURL = "https://campaignapi.piramalfinance.com/api/account/access-token"; | ||
|
||
// V1 API URL | ||
// const generateOTPURL= "https://mobileapi.pchf.in/api/website/generate-otp"; | ||
|
||
// V2 API URL | ||
const generateOTPURL = "https://campaignapi.piramalfinance.com/api/website/generate-otp"; | ||
|
||
// V1 API URL | ||
// const resendOTPUrl = "https://mobileapi.pchf.in/api/website/resend-otp"; | ||
|
||
// V2 API URL | ||
const resendOTPUrl = "https://campaignapi.piramalfinance.com/api/website/resend-otp"; | ||
|
||
// V1 API URL | ||
// const verifyOTPURL = "https://mobileapi.pchf.in/api/website/verify-otp"; | ||
|
||
// V2 API URL | ||
const verifyOTPURL = "https://campaignapi.piramalfinance.com/api/website/verify-otp"; | ||
|
||
// V1 API URL | ||
const otpTokenURL = "https://apisit.piramal.com/oauth/v1/cc/accesstoken"; | ||
const smsURL = "https://apisit.piramal.com/communication/v2/karix/sms-query?ver=1.0&key=HbUcyrewWm27hdKRZyj2zA%3D%3D&encrypt=0&send=PIRCHF&dest=8007359739&text=Please%20use%20this%20one-time%20password%20for%20Piramal%20User%20Account%20Verification%3A%209106.%20DO%20NOT%20SHARE%20THIS%20WITH%20ANYONE%20and%20it%20is%20valid%20for%205%20minutes%20only"; | ||
const leadAPIURL = "https://mobileapi.pchf.in/api/website/insert-lead-data"; | ||
const verifyOTPURL = "https://mobileapi.pchf.in/api/website/verify-otp"; | ||
const resendOTPUrl = "https://mobileapi.pchf.in/api/website/resend-otp"; | ||
const getWhatAPIAuthURL = "https://piramal.allincall.in/campaign/external/get-auth-token/"; | ||
const getWhatAPIURL = "https://piramal.allincall.in/campaign/external/send-event-based-triggered-whatsapp-campaign/"; | ||
|
||
export { accessTokenURL, generateOTPURL, otpTokenURL, smsURL, leadAPIURL, verifyOTPURL, resendOTPUrl, getWhatAPIAuthURL, getWhatAPIURL }; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
export default function decorate(block) { | ||
// document.head += (block.textContent); | ||
|
||
// const schema = { | ||
// "@context": "https://schema.org", | ||
// "@type": "Organization", | ||
// "name": "Apply for a Home loan online with Piramal Finance 1 ", | ||
// "url": "https://www.piramalfinance.com/", | ||
// "logo": "/", | ||
// "contactPoint": { | ||
// "@type": "ContactPoint", | ||
// "telephone": "1800-266-9777", | ||
// "contactType": "customer service", | ||
// "areaServed": "IN", | ||
// "availableLanguage": "en" | ||
// }, | ||
// "sameAs": [ | ||
// "https://www.facebook.com/pf", | ||
// "https://twitter.com/pf", | ||
// "https://www.instagram.com/pf/", | ||
// "https://www.youtube.com/pfInsurance", | ||
// "https://www.linkedin.com/company/pf" | ||
// ] | ||
// } | ||
const script = document.createElement('script') | ||
script.type = "application/ld+json"; | ||
script.innerHTML = block.textContent; | ||
block.innerHTML = ''; | ||
document.head.append(script) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters