From af07d6737a3b41926f8a6c48f0614acb1f57e4aa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 01:44:02 +0000 Subject: [PATCH 1/2] Initial plan From caddb32824732a501f3339f45321ed6dcb96567b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 01:50:58 +0000 Subject: [PATCH 2/2] Rename CONSUMER_KEY and CONSUMER_SECRET to SALESFORCE_CONSUMER_KEY and SALESFORCE_CONSUMER_SECRET Co-authored-by: cvanes <485408+cvanes@users.noreply.github.com> --- __init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__init__.py b/__init__.py index 7618389..d53d570 100644 --- a/__init__.py +++ b/__init__.py @@ -35,8 +35,8 @@ def get_client(): auth_data = { 'grant_type': "client_credentials", - 'client_id': os.environ.get('CONSUMER_KEY'), - 'client_secret': os.environ.get('CONSUMER_SECRET') + 'client_id': os.environ.get('SALESFORCE_CONSUMER_KEY'), + 'client_secret': os.environ.get('SALESFORCE_CONSUMER_SECRET') } if sf is None: