Soul Treasure Healing & Counseling

Your Soul Treasure Awaits Your Discovery!

Do you know that within you is a secret cache of power, beauty, and wisdom rich in hidden resources, un-mined brilliance, and untapped talents and gifts?

This is your Soul Treasure, the treasure that is you, and you can reclaim it now with Soul Treasure Healing.

Girl with Bowl of Light Joyce Huntington

Girl with Bowl of Light Joyce Huntington

What is Soul Treasure Healing?

Soul Treasure Healing is a synergistic blend of energy processes and empowerment tools designed to help you remember and reclaim your true radiance, power, wisdom, and Light.

And best of all it is custom-fit by Spirit just for you.

Each 75 minute session has three main features

~Divine Energy Healing is present throughout the entire session and creates a field of unconditional love, safety, connectedness, and peace. This is where gentle change and profound transformation occurs.

~Counseling offers new insights and perspectives on life issues and brings into your conscious awareness that which is ready to shift. This is done through deep listening, tracking your energetic patterns, and witnessing your process.

~Finally, coaching teaches you new techniques to help you take what you’ve learned and activate it in your daily life.

Click here to learn more about STH and why it’s so effective.

If you are committed to making positive change for the better, are willing to look within to uncover your deepest knowing and be freed from false limitations, and would truly like to love and honor yourself as the vibrant, beautiful soul that you are, then Soul Treasure Healing is for you.

Book a Soul Treasure Healing

All sessions available in person or by phone.
International sessions over Skype.

Single Soul Treasure Healing Session                    $188

Discounted Package of Four STH Sessions          $677 (a $75 savings)


Soul Treasure Healing



Once payment is received I will be in touch via email to set up your session(s).

Need more information before deciding if Soul Treasure Healing is for you? No problem… Send me an email and we’ll set up a brief complementary phone consultation.

Read about the benefits of STH here

Click here to learn about the symptoms of suppressing your light and hiding your Soul Treasure

 

 

const {RecaptchaEnterpriseServiceClient} = require('@google-cloud/recaptcha-enterprise'); /** * Create an assessment to analyze the risk of a UI action. * * projectID: Your Google Cloud Project ID. * recaptchaSiteKey: The reCAPTCHA key associated with the site/app * token: The generated token obtained from the client. * recaptchaAction: Action name corresponding to the token. */ async function createAssessment({ // TODO: Replace the token and reCAPTCHA action variables before running the sample. projectID = "causal-fort-262505", recaptchaKey = "6LdCXgctAAAAAG4UiTRGe-Iz56ICnuJn6hTrmrEA", token = "action-token", recaptchaAction = "action-name", }) { // Create the reCAPTCHA client. // TODO: Cache the client generation code (recommended) or call client.close() before exiting the method. const client = new RecaptchaEnterpriseServiceClient(); const projectPath = client.projectPath(projectID); // Build the assessment request. const request = ({ assessment: { event: { token: token, siteKey: recaptchaKey, }, }, parent: projectPath, }); const [ response ] = await client.createAssessment(request); // Check if the token is valid. if (!response.tokenProperties.valid) { console.log(`The CreateAssessment call failed because the token was: ${response.tokenProperties.invalidReason}`); return null; } // Check if the expected action was executed. // The `action` property is set by user client in the grecaptcha.enterprise.execute() method. if (response.tokenProperties.action === recaptchaAction) { // Get the risk score and the reason(s). // For more information on interpreting the assessment, see: // https://cloud.google.com/recaptcha/docs/interpret-assessment console.log(`The reCAPTCHA score is: ${response.riskAnalysis.score}`); response.riskAnalysis.reasons.forEach((reason) => { console.log(reason); }); return response.riskAnalysis.score; } else { console.log("The action attribute in your reCAPTCHA tag does not match the action you are expecting to score"); return null; } }