├── .eslintignore ├── .forceignore ├── .gitignore ├── .husky └── pre-commit ├── .pmdCache ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── README.md ├── config └── project-scratch-def.json ├── force-app └── main │ └── default │ ├── aura │ └── .eslintrc.json │ ├── classes │ ├── ChatGPTService.cls │ ├── ChatGPTService.cls-meta.xml │ ├── RecordFieldsFetcher.cls │ └── RecordFieldsFetcher.cls-meta.xml │ ├── labels │ └── CustomLabels.labels-meta.xml │ ├── lwc │ ├── .eslintrc.json │ ├── chatGPTBot │ │ ├── __tests__ │ │ │ └── chatGPTBot.test.js │ │ ├── chatGPTBot.css │ │ ├── chatGPTBot.html │ │ ├── chatGPTBot.js │ │ └── chatGPTBot.js-meta.xml │ └── chatGPTIntelligence │ │ ├── __tests__ │ │ └── chatGPTIntelligence.test.js │ │ ├── chatGPTIntelligence.html │ │ ├── chatGPTIntelligence.js │ │ └── chatGPTIntelligence.js-meta.xml │ ├── remoteSiteSettings │ └── Open_AI_URL.remoteSite-meta.xml │ └── staticresources │ ├── ConsoleToolkit.js │ └── ConsoleToolkit.resource-meta.xml ├── jest.config.js ├── manifest └── package.xml ├── package.json ├── scripts ├── apex │ └── hello.apex └── soql │ └── account.soql └── sfdx-project.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/.eslintignore -------------------------------------------------------------------------------- /.forceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/.forceignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run precommit -------------------------------------------------------------------------------- /.pmdCache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/.pmdCache -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/README.md -------------------------------------------------------------------------------- /config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/config/project-scratch-def.json -------------------------------------------------------------------------------- /force-app/main/default/aura/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/aura/.eslintrc.json -------------------------------------------------------------------------------- /force-app/main/default/classes/ChatGPTService.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/classes/ChatGPTService.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/ChatGPTService.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/classes/ChatGPTService.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/RecordFieldsFetcher.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/classes/RecordFieldsFetcher.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/RecordFieldsFetcher.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/classes/RecordFieldsFetcher.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/labels/CustomLabels.labels-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/labels/CustomLabels.labels-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/lwc/.eslintrc.json -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTBot/__tests__/chatGPTBot.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/lwc/chatGPTBot/__tests__/chatGPTBot.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTBot/chatGPTBot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/lwc/chatGPTBot/chatGPTBot.css -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTBot/chatGPTBot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/lwc/chatGPTBot/chatGPTBot.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTBot/chatGPTBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/lwc/chatGPTBot/chatGPTBot.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTBot/chatGPTBot.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/lwc/chatGPTBot/chatGPTBot.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTIntelligence/__tests__/chatGPTIntelligence.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/lwc/chatGPTIntelligence/__tests__/chatGPTIntelligence.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTIntelligence/chatGPTIntelligence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/lwc/chatGPTIntelligence/chatGPTIntelligence.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTIntelligence/chatGPTIntelligence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/lwc/chatGPTIntelligence/chatGPTIntelligence.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTIntelligence/chatGPTIntelligence.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/lwc/chatGPTIntelligence/chatGPTIntelligence.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/remoteSiteSettings/Open_AI_URL.remoteSite-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/remoteSiteSettings/Open_AI_URL.remoteSite-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/staticresources/ConsoleToolkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/staticresources/ConsoleToolkit.js -------------------------------------------------------------------------------- /force-app/main/default/staticresources/ConsoleToolkit.resource-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/force-app/main/default/staticresources/ConsoleToolkit.resource-meta.xml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/manifest/package.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/package.json -------------------------------------------------------------------------------- /scripts/apex/hello.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/scripts/apex/hello.apex -------------------------------------------------------------------------------- /scripts/soql/account.soql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/scripts/soql/account.soql -------------------------------------------------------------------------------- /sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JitendraZaa/ChatGPT-Salesforce-Integration/HEAD/sfdx-project.json --------------------------------------------------------------------------------