├── .forceignore ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── README.md ├── config └── project-scratch-def.json ├── force-app └── main │ └── default │ ├── aura │ └── .eslintrc.json │ ├── classes │ ├── AccountDetails.cls │ ├── AccountDetails.cls-meta.xml │ ├── AccountPDFEmailSender.cls │ ├── AccountPDFEmailSender.cls-meta.xml │ ├── ContactDetails.cls │ ├── ContactDetails.cls-meta.xml │ ├── CourseDetails.cls │ ├── CourseDetails.cls-meta.xml │ ├── CustomOpportunityIterable.cls │ ├── CustomOpportunityIterable.cls-meta.xml │ ├── CustomOpportunityIterator.cls │ ├── CustomOpportunityIterator.cls-meta.xml │ ├── FeedbackController.cls │ ├── FeedbackController.cls-meta.xml │ ├── HideFeedAttachmentHandler.cls │ ├── HideFeedAttachmentHandler.cls-meta.xml │ ├── InventoryManagement.cls │ ├── InventoryManagement.cls-meta.xml │ ├── InventoryManagementTest.cls │ ├── InventoryManagementTest.cls-meta.xml │ ├── LeadConversionController.cls │ ├── LeadConversionController.cls-meta.xml │ ├── LeadDetails.cls │ ├── LeadDetails.cls-meta.xml │ ├── MindRubyQueNo4Class.cls │ ├── MindRubyQueNo4Class.cls-meta.xml │ ├── OpportunityBatchApexClass.cls │ ├── OpportunityBatchApexClass.cls-meta.xml │ ├── OpportunityDetails.cls │ ├── OpportunityDetails.cls-meta.xml │ ├── OrderDetails.cls │ ├── OrderDetails.cls-meta.xml │ ├── PCGIConsultingQueNo1Helper.cls │ ├── PCGIConsultingQueNo1Helper.cls-meta.xml │ ├── PlatformEventOppPublisher.cls │ ├── PlatformEventOppPublisher.cls-meta.xml │ ├── PlatformEventOppPublisherVFController.cls │ ├── PlatformEventOppPublisherVFController.cls-meta.xml │ ├── RelationshipFinder.cls │ ├── RelationshipFinder.cls-meta.xml │ ├── SalesforceToWhatsAppCallout.cls │ ├── SalesforceToWhatsAppCallout.cls-meta.xml │ ├── SalesforceWARestResourceForWebHooks.cls │ ├── SalesforceWARestResourceForWebHooks.cls-meta.xml │ ├── SendMessagesFromSalesforceToWhatsApp.cls │ ├── SendMessagesFromSalesforceToWhatsApp.cls-meta.xml │ ├── TrainingScheduleDetails.cls │ ├── TrainingScheduleDetails.cls-meta.xml │ ├── TrainingSchedulerController.cls │ ├── TrainingSchedulerController.cls-meta.xml │ ├── WeatherAPILWCCallOut.cls │ ├── WeatherAPILWCCallOut.cls-meta.xml │ ├── WhatsAppMessage.cls │ ├── WhatsAppMessage.cls-meta.xml │ ├── linkedInCallout.cls │ ├── linkedInCallout.cls-meta.xml │ ├── platformEventPublisherClass.cls │ ├── platformEventPublisherClass.cls-meta.xml │ ├── platformEventPublisherClassCallBack.cls │ └── platformEventPublisherClassCallBack.cls-meta.xml │ ├── lwc │ ├── .eslintrc.json │ ├── chatGPTInSalesforce │ │ ├── __tests__ │ │ │ └── chatGPTInSalesforce.test.js │ │ ├── chatGPTInSalesforce.html │ │ ├── chatGPTInSalesforce.js │ │ └── chatGPTInSalesforce.js-meta.xml │ ├── coachingAcademy │ │ ├── __tests__ │ │ │ └── coachingAcademy.test.js │ │ ├── coachingAcademy.html │ │ ├── coachingAcademy.js │ │ └── coachingAcademy.js-meta.xml │ ├── coursesAndTopicsDetails │ │ ├── __tests__ │ │ │ └── coursesAndTopicsDetails.test.js │ │ ├── coursesAndTopicsDetails.html │ │ ├── coursesAndTopicsDetails.js │ │ └── coursesAndTopicsDetails.js-meta.xml │ ├── customDataTypesForLightningDataTable │ │ ├── __tests__ │ │ │ └── customDataTypesForLightningDataTable.test.js │ │ ├── customDataTypesForLightningDataTable.html │ │ ├── customDataTypesForLightningDataTable.js │ │ ├── customDataTypesForLightningDataTable.js-meta.xml │ │ ├── customEdit.html │ │ ├── customName.html │ │ ├── customPicklist.html │ │ ├── customPicture.html │ │ └── customRank.html │ ├── feedBackForm │ │ ├── __tests__ │ │ │ └── feedBackForm.test.js │ │ ├── feedBackForm.html │ │ ├── feedBackForm.js │ │ └── feedBackForm.js-meta.xml │ ├── lazyLoadingInLightningDataTable │ │ ├── __tests__ │ │ │ └── lazyLoadingInLightningDataTable.test.js │ │ ├── lazyLoadingInLightningDataTable.html │ │ ├── lazyLoadingInLightningDataTable.js │ │ └── lazyLoadingInLightningDataTable.js-meta.xml │ ├── leadCaptureForm │ │ ├── __tests__ │ │ │ └── leadCaptureForm.test.js │ │ ├── leadCaptureForm.html │ │ ├── leadCaptureForm.js │ │ └── leadCaptureForm.js-meta.xml │ ├── lightningDataTableEnhancer │ │ ├── __tests__ │ │ │ └── lightningDataTableEnhancer.test.js │ │ ├── lightningDataTableEnhancer.html │ │ ├── lightningDataTableEnhancer.js │ │ └── lightningDataTableEnhancer.js-meta.xml │ ├── linkedInSalesforce │ │ ├── __tests__ │ │ │ └── linkedInSalesforce.test.js │ │ ├── linkedInSalesforce.html │ │ ├── linkedInSalesforce.js │ │ └── linkedInSalesforce.js-meta.xml │ ├── lumioPartnersQuoNo2 │ │ ├── __tests__ │ │ │ └── lumioPartnersQuoNo2.test.js │ │ ├── lumioPartnersQuoNo2.html │ │ ├── lumioPartnersQuoNo2.js │ │ └── lumioPartnersQuoNo2.js-meta.xml │ ├── mindRubyQueNo3 │ │ ├── __tests__ │ │ │ └── mindRubyQueNo3.test.js │ │ ├── mindRubyQueNo3.html │ │ ├── mindRubyQueNo3.js │ │ └── mindRubyQueNo3.js-meta.xml │ ├── mindRubyQueNo4 │ │ ├── __tests__ │ │ │ └── mindRubyQueNo4.test.js │ │ ├── mindRubyQueNo4.html │ │ ├── mindRubyQueNo4.js │ │ └── mindRubyQueNo4.js-meta.xml │ ├── movieDetail │ │ ├── __tests__ │ │ │ └── movieDetail.test.js │ │ ├── movieDetail.css │ │ ├── movieDetail.html │ │ ├── movieDetail.js │ │ └── movieDetail.js-meta.xml │ ├── movieSearch │ │ ├── __tests__ │ │ │ └── movieSearch.test.js │ │ ├── movieSearch.css │ │ ├── movieSearch.html │ │ ├── movieSearch.js │ │ └── movieSearch.js-meta.xml │ ├── movieTile │ │ ├── __tests__ │ │ │ └── movieTile.test.js │ │ ├── movieTile.css │ │ ├── movieTile.html │ │ ├── movieTile.js │ │ └── movieTile.js-meta.xml │ ├── platformEventOppSubscriber │ │ ├── __tests__ │ │ │ └── platformEventOppSubscriber.test.js │ │ ├── platformEventOppSubscriber.html │ │ ├── platformEventOppSubscriber.js │ │ └── platformEventOppSubscriber.js-meta.xml │ ├── platformEventPublisher │ │ ├── __tests__ │ │ │ └── platformEventPublisher.test.js │ │ ├── platformEventPublisher.html │ │ ├── platformEventPublisher.js │ │ └── platformEventPublisher.js-meta.xml │ ├── platformEventSubscriber │ │ ├── __tests__ │ │ │ └── platformEventSubscriber.test.js │ │ ├── platformEventSubscriber.html │ │ ├── platformEventSubscriber.js │ │ └── platformEventSubscriber.js-meta.xml │ ├── rowActionModalForLightningDataTable │ │ ├── __tests__ │ │ │ └── rowActionModalForLightningDataTable.test.js │ │ ├── rowActionModalForLightningDataTable.html │ │ ├── rowActionModalForLightningDataTable.js │ │ └── rowActionModalForLightningDataTable.js-meta.xml │ ├── rowAndHeaderActionOnLightningDataTable │ │ ├── __tests__ │ │ │ └── rowAndHeaderActionOnLightningDataTable.test.js │ │ ├── rowAndHeaderActionOnLightningDataTable.html │ │ ├── rowAndHeaderActionOnLightningDataTable.js │ │ └── rowAndHeaderActionOnLightningDataTable.js-meta.xml │ ├── salesforceAccountManager │ │ ├── __tests__ │ │ │ └── salesforceAccountManager.test.js │ │ ├── salesforceAccountManager.html │ │ ├── salesforceAccountManager.js │ │ └── salesforceAccountManager.js-meta.xml │ ├── synechronQueNo1 │ │ ├── __tests__ │ │ │ └── synechronQueNo1.test.js │ │ ├── synechronQueNo1.html │ │ ├── synechronQueNo1.js │ │ └── synechronQueNo1.js-meta.xml │ ├── synechronQueNo2 │ │ ├── __tests__ │ │ │ └── synechronQueNo2.test.js │ │ ├── synechronQueNo2.css │ │ ├── synechronQueNo2.html │ │ ├── synechronQueNo2.js │ │ └── synechronQueNo2.js-meta.xml │ ├── trainingScheduler │ │ ├── __tests__ │ │ │ └── trainingScheduler.test.js │ │ ├── trainingScheduler.html │ │ ├── trainingScheduler.js │ │ └── trainingScheduler.js-meta.xml │ ├── updateRecordUsingImperativeApex │ │ ├── __tests__ │ │ │ └── updateRecordUsingImperativeApex.test.js │ │ ├── updateRecordUsingImperativeApex.html │ │ ├── updateRecordUsingImperativeApex.js │ │ └── updateRecordUsingImperativeApex.js-meta.xml │ ├── weatherAPILWC │ │ ├── ShantanuLWCProjectHub.code-workspace │ │ ├── WeatherAPILWC.css │ │ ├── __tests__ │ │ │ └── weatherAPILWC.test.js │ │ ├── weatherAPILWC.html │ │ ├── weatherAPILWC.js │ │ └── weatherAPILWC.js-meta.xml │ └── whatsAppChat │ │ ├── __tests__ │ │ └── whatsAppChat.test.js │ │ ├── whatsAppChat.html │ │ ├── whatsAppChat.js │ │ └── whatsAppChat.js-meta.xml │ ├── messageChannels │ └── movieChannel.messageChannel-meta.xml │ ├── pages │ ├── AccountPDFPage.page │ ├── AccountPDFPage.page-meta.xml │ ├── PlatformEventOppPublisherVF.page │ └── PlatformEventOppPublisherVF.page-meta.xml │ └── triggers │ ├── AmazonQueNo1.trigger │ ├── AmazonQueNo1.trigger-meta.xml │ ├── BatchApexErrorTrigger.trigger │ ├── BatchApexErrorTrigger.trigger-meta.xml │ ├── ContentVersionTrigger.trigger │ ├── ContentVersionTrigger.trigger-meta.xml │ ├── CreateCandidateRecordAfterClosedWon.trigger │ ├── CreateCandidateRecordAfterClosedWon.trigger-meta.xml │ ├── EPAMSystemQueNo1.trigger │ ├── EPAMSystemQueNo1.trigger-meta.xml │ ├── FollowerRequestedTriggerNo1.trigger │ ├── FollowerRequestedTriggerNo1.trigger-meta.xml │ ├── FollowerRequestedTriggerNo2.trigger │ ├── FollowerRequestedTriggerNo2.trigger-meta.xml │ ├── GoogleQueNo1.trigger │ ├── GoogleQueNo1.trigger-meta.xml │ ├── HideFeedAttachment.trigger │ ├── HideFeedAttachment.trigger-meta.xml │ ├── InfosysQueNo1.trigger │ ├── InfosysQueNo1.trigger-meta.xml │ ├── LumioPartnersQueNo1.trigger │ ├── LumioPartnersQueNo1.trigger-meta.xml │ ├── MichelinQueNo1.trigger │ ├── MichelinQueNo1.trigger-meta.xml │ ├── MindRubyQueNo1.trigger │ ├── MindRubyQueNo1.trigger-meta.xml │ ├── MindRubyQueNo2.trigger │ ├── MindRubyQueNo2.trigger-meta.xml │ ├── NTTDataQueNo1.trigger │ ├── NTTDataQueNo1.trigger-meta.xml │ ├── OpportunityTrigger.trigger │ ├── OpportunityTrigger.trigger-meta.xml │ ├── PCGIConsultingQueNo1.trigger │ ├── PCGIConsultingQueNo1.trigger-meta.xml │ ├── SendFeedBackSurveyLink.trigger │ ├── SendFeedBackSurveyLink.trigger-meta.xml │ ├── TCSQueNo1.trigger │ ├── TCSQueNo1.trigger-meta.xml │ ├── TCSQueNo2.trigger │ └── TCSQueNo2.trigger-meta.xml ├── jest.config.js ├── manifest └── package.xml ├── package.json ├── scripts ├── apex │ └── hello.apex └── soql │ └── account.soql └── sfdx-project.json /.forceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/.forceignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run precommit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/README.md -------------------------------------------------------------------------------- /config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/config/project-scratch-def.json -------------------------------------------------------------------------------- /force-app/main/default/aura/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/aura/.eslintrc.json -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountDetails.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/AccountDetails.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountDetails.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/AccountDetails.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountPDFEmailSender.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/AccountPDFEmailSender.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/AccountPDFEmailSender.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/AccountPDFEmailSender.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/ContactDetails.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/ContactDetails.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/ContactDetails.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/ContactDetails.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/CourseDetails.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/CourseDetails.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/CourseDetails.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/CourseDetails.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/CustomOpportunityIterable.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/CustomOpportunityIterable.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/CustomOpportunityIterable.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/CustomOpportunityIterable.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/CustomOpportunityIterator.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/CustomOpportunityIterator.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/CustomOpportunityIterator.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/CustomOpportunityIterator.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/FeedbackController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/FeedbackController.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/FeedbackController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/FeedbackController.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/HideFeedAttachmentHandler.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/HideFeedAttachmentHandler.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/HideFeedAttachmentHandler.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/HideFeedAttachmentHandler.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/InventoryManagement.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/InventoryManagement.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/InventoryManagement.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/InventoryManagement.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/InventoryManagementTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/InventoryManagementTest.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/InventoryManagementTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/InventoryManagementTest.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/LeadConversionController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/LeadConversionController.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/LeadConversionController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/LeadConversionController.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/LeadDetails.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/LeadDetails.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/LeadDetails.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/LeadDetails.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/MindRubyQueNo4Class.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/MindRubyQueNo4Class.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/MindRubyQueNo4Class.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/MindRubyQueNo4Class.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/OpportunityBatchApexClass.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/OpportunityBatchApexClass.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/OpportunityBatchApexClass.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/OpportunityBatchApexClass.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/OpportunityDetails.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/OpportunityDetails.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/OpportunityDetails.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/OpportunityDetails.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/OrderDetails.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/OrderDetails.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/OrderDetails.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/OrderDetails.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/PCGIConsultingQueNo1Helper.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/PCGIConsultingQueNo1Helper.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/PCGIConsultingQueNo1Helper.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/PCGIConsultingQueNo1Helper.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/PlatformEventOppPublisher.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/PlatformEventOppPublisher.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/PlatformEventOppPublisher.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/PlatformEventOppPublisher.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/PlatformEventOppPublisherVFController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/PlatformEventOppPublisherVFController.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/PlatformEventOppPublisherVFController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/PlatformEventOppPublisherVFController.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/RelationshipFinder.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/RelationshipFinder.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/RelationshipFinder.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/RelationshipFinder.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/SalesforceToWhatsAppCallout.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/SalesforceToWhatsAppCallout.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/SalesforceToWhatsAppCallout.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/SalesforceToWhatsAppCallout.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/SalesforceWARestResourceForWebHooks.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/SalesforceWARestResourceForWebHooks.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/SalesforceWARestResourceForWebHooks.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/SalesforceWARestResourceForWebHooks.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/SendMessagesFromSalesforceToWhatsApp.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/SendMessagesFromSalesforceToWhatsApp.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/SendMessagesFromSalesforceToWhatsApp.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/SendMessagesFromSalesforceToWhatsApp.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/TrainingScheduleDetails.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/TrainingScheduleDetails.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/TrainingScheduleDetails.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/TrainingScheduleDetails.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/TrainingSchedulerController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/TrainingSchedulerController.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/TrainingSchedulerController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/TrainingSchedulerController.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/WeatherAPILWCCallOut.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/WeatherAPILWCCallOut.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/WeatherAPILWCCallOut.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/WeatherAPILWCCallOut.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/WhatsAppMessage.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/WhatsAppMessage.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/WhatsAppMessage.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/WhatsAppMessage.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/linkedInCallout.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/linkedInCallout.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/linkedInCallout.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/linkedInCallout.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/platformEventPublisherClass.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/platformEventPublisherClass.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/platformEventPublisherClass.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/platformEventPublisherClass.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/platformEventPublisherClassCallBack.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/platformEventPublisherClassCallBack.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/platformEventPublisherClassCallBack.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/classes/platformEventPublisherClassCallBack.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/.eslintrc.json -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTInSalesforce/__tests__/chatGPTInSalesforce.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/chatGPTInSalesforce/__tests__/chatGPTInSalesforce.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTInSalesforce/chatGPTInSalesforce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/chatGPTInSalesforce/chatGPTInSalesforce.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTInSalesforce/chatGPTInSalesforce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/chatGPTInSalesforce/chatGPTInSalesforce.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/chatGPTInSalesforce/chatGPTInSalesforce.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/chatGPTInSalesforce/chatGPTInSalesforce.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/coachingAcademy/__tests__/coachingAcademy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/coachingAcademy/__tests__/coachingAcademy.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/coachingAcademy/coachingAcademy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/coachingAcademy/coachingAcademy.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/coachingAcademy/coachingAcademy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/coachingAcademy/coachingAcademy.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/coachingAcademy/coachingAcademy.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/coachingAcademy/coachingAcademy.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/coursesAndTopicsDetails/__tests__/coursesAndTopicsDetails.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/coursesAndTopicsDetails/__tests__/coursesAndTopicsDetails.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/coursesAndTopicsDetails/coursesAndTopicsDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/coursesAndTopicsDetails/coursesAndTopicsDetails.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/coursesAndTopicsDetails/coursesAndTopicsDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/coursesAndTopicsDetails/coursesAndTopicsDetails.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/coursesAndTopicsDetails/coursesAndTopicsDetails.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/coursesAndTopicsDetails/coursesAndTopicsDetails.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/customDataTypesForLightningDataTable/__tests__/customDataTypesForLightningDataTable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/customDataTypesForLightningDataTable/__tests__/customDataTypesForLightningDataTable.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/customDataTypesForLightningDataTable/customDataTypesForLightningDataTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/customDataTypesForLightningDataTable/customDataTypesForLightningDataTable.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/customDataTypesForLightningDataTable/customDataTypesForLightningDataTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/customDataTypesForLightningDataTable/customDataTypesForLightningDataTable.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/customDataTypesForLightningDataTable/customDataTypesForLightningDataTable.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/customDataTypesForLightningDataTable/customDataTypesForLightningDataTable.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/customDataTypesForLightningDataTable/customEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/customDataTypesForLightningDataTable/customEdit.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/customDataTypesForLightningDataTable/customName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/customDataTypesForLightningDataTable/customName.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/customDataTypesForLightningDataTable/customPicklist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/customDataTypesForLightningDataTable/customPicklist.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/customDataTypesForLightningDataTable/customPicture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/customDataTypesForLightningDataTable/customPicture.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/customDataTypesForLightningDataTable/customRank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/customDataTypesForLightningDataTable/customRank.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/feedBackForm/__tests__/feedBackForm.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/feedBackForm/__tests__/feedBackForm.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/feedBackForm/feedBackForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/feedBackForm/feedBackForm.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/feedBackForm/feedBackForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/feedBackForm/feedBackForm.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/feedBackForm/feedBackForm.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/feedBackForm/feedBackForm.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/lazyLoadingInLightningDataTable/__tests__/lazyLoadingInLightningDataTable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lazyLoadingInLightningDataTable/__tests__/lazyLoadingInLightningDataTable.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/lazyLoadingInLightningDataTable/lazyLoadingInLightningDataTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lazyLoadingInLightningDataTable/lazyLoadingInLightningDataTable.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/lazyLoadingInLightningDataTable/lazyLoadingInLightningDataTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lazyLoadingInLightningDataTable/lazyLoadingInLightningDataTable.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/lazyLoadingInLightningDataTable/lazyLoadingInLightningDataTable.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lazyLoadingInLightningDataTable/lazyLoadingInLightningDataTable.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/leadCaptureForm/__tests__/leadCaptureForm.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/leadCaptureForm/__tests__/leadCaptureForm.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/leadCaptureForm/leadCaptureForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/leadCaptureForm/leadCaptureForm.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/leadCaptureForm/leadCaptureForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/leadCaptureForm/leadCaptureForm.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/leadCaptureForm/leadCaptureForm.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/leadCaptureForm/leadCaptureForm.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/lightningDataTableEnhancer/__tests__/lightningDataTableEnhancer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lightningDataTableEnhancer/__tests__/lightningDataTableEnhancer.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/lightningDataTableEnhancer/lightningDataTableEnhancer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lightningDataTableEnhancer/lightningDataTableEnhancer.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/lightningDataTableEnhancer/lightningDataTableEnhancer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lightningDataTableEnhancer/lightningDataTableEnhancer.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/lightningDataTableEnhancer/lightningDataTableEnhancer.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lightningDataTableEnhancer/lightningDataTableEnhancer.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/linkedInSalesforce/__tests__/linkedInSalesforce.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/linkedInSalesforce/__tests__/linkedInSalesforce.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/linkedInSalesforce/linkedInSalesforce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/linkedInSalesforce/linkedInSalesforce.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/linkedInSalesforce/linkedInSalesforce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/linkedInSalesforce/linkedInSalesforce.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/linkedInSalesforce/linkedInSalesforce.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/linkedInSalesforce/linkedInSalesforce.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/lumioPartnersQuoNo2/__tests__/lumioPartnersQuoNo2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lumioPartnersQuoNo2/__tests__/lumioPartnersQuoNo2.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/lumioPartnersQuoNo2/lumioPartnersQuoNo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lumioPartnersQuoNo2/lumioPartnersQuoNo2.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/lumioPartnersQuoNo2/lumioPartnersQuoNo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lumioPartnersQuoNo2/lumioPartnersQuoNo2.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/lumioPartnersQuoNo2/lumioPartnersQuoNo2.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/lumioPartnersQuoNo2/lumioPartnersQuoNo2.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/mindRubyQueNo3/__tests__/mindRubyQueNo3.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/mindRubyQueNo3/__tests__/mindRubyQueNo3.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/mindRubyQueNo3/mindRubyQueNo3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/mindRubyQueNo3/mindRubyQueNo3.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/mindRubyQueNo3/mindRubyQueNo3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/mindRubyQueNo3/mindRubyQueNo3.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/mindRubyQueNo3/mindRubyQueNo3.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/mindRubyQueNo3/mindRubyQueNo3.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/mindRubyQueNo4/__tests__/mindRubyQueNo4.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/mindRubyQueNo4/__tests__/mindRubyQueNo4.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/mindRubyQueNo4/mindRubyQueNo4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/mindRubyQueNo4/mindRubyQueNo4.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/mindRubyQueNo4/mindRubyQueNo4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/mindRubyQueNo4/mindRubyQueNo4.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/mindRubyQueNo4/mindRubyQueNo4.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/mindRubyQueNo4/mindRubyQueNo4.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieDetail/__tests__/movieDetail.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieDetail/__tests__/movieDetail.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieDetail/movieDetail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieDetail/movieDetail.css -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieDetail/movieDetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieDetail/movieDetail.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieDetail/movieDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieDetail/movieDetail.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieDetail/movieDetail.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieDetail/movieDetail.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieSearch/__tests__/movieSearch.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieSearch/__tests__/movieSearch.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieSearch/movieSearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieSearch/movieSearch.css -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieSearch/movieSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieSearch/movieSearch.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieSearch/movieSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieSearch/movieSearch.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieSearch/movieSearch.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieSearch/movieSearch.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieTile/__tests__/movieTile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieTile/__tests__/movieTile.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieTile/movieTile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieTile/movieTile.css -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieTile/movieTile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieTile/movieTile.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieTile/movieTile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieTile/movieTile.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/movieTile/movieTile.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/movieTile/movieTile.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventOppSubscriber/__tests__/platformEventOppSubscriber.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventOppSubscriber/__tests__/platformEventOppSubscriber.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventOppSubscriber/platformEventOppSubscriber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventOppSubscriber/platformEventOppSubscriber.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventOppSubscriber/platformEventOppSubscriber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventOppSubscriber/platformEventOppSubscriber.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventOppSubscriber/platformEventOppSubscriber.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventOppSubscriber/platformEventOppSubscriber.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventPublisher/__tests__/platformEventPublisher.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventPublisher/__tests__/platformEventPublisher.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventPublisher/platformEventPublisher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventPublisher/platformEventPublisher.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventPublisher/platformEventPublisher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventPublisher/platformEventPublisher.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventPublisher/platformEventPublisher.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventPublisher/platformEventPublisher.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventSubscriber/__tests__/platformEventSubscriber.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventSubscriber/__tests__/platformEventSubscriber.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventSubscriber/platformEventSubscriber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventSubscriber/platformEventSubscriber.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventSubscriber/platformEventSubscriber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventSubscriber/platformEventSubscriber.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/platformEventSubscriber/platformEventSubscriber.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/platformEventSubscriber/platformEventSubscriber.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/rowActionModalForLightningDataTable/__tests__/rowActionModalForLightningDataTable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/rowActionModalForLightningDataTable/__tests__/rowActionModalForLightningDataTable.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/rowActionModalForLightningDataTable/rowActionModalForLightningDataTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/rowActionModalForLightningDataTable/rowActionModalForLightningDataTable.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/rowActionModalForLightningDataTable/rowActionModalForLightningDataTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/rowActionModalForLightningDataTable/rowActionModalForLightningDataTable.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/rowActionModalForLightningDataTable/rowActionModalForLightningDataTable.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/rowActionModalForLightningDataTable/rowActionModalForLightningDataTable.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/rowAndHeaderActionOnLightningDataTable/__tests__/rowAndHeaderActionOnLightningDataTable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/rowAndHeaderActionOnLightningDataTable/__tests__/rowAndHeaderActionOnLightningDataTable.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/rowAndHeaderActionOnLightningDataTable/rowAndHeaderActionOnLightningDataTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/rowAndHeaderActionOnLightningDataTable/rowAndHeaderActionOnLightningDataTable.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/rowAndHeaderActionOnLightningDataTable/rowAndHeaderActionOnLightningDataTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/rowAndHeaderActionOnLightningDataTable/rowAndHeaderActionOnLightningDataTable.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/rowAndHeaderActionOnLightningDataTable/rowAndHeaderActionOnLightningDataTable.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/rowAndHeaderActionOnLightningDataTable/rowAndHeaderActionOnLightningDataTable.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/salesforceAccountManager/__tests__/salesforceAccountManager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/salesforceAccountManager/__tests__/salesforceAccountManager.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/salesforceAccountManager/salesforceAccountManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/salesforceAccountManager/salesforceAccountManager.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/salesforceAccountManager/salesforceAccountManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/salesforceAccountManager/salesforceAccountManager.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/salesforceAccountManager/salesforceAccountManager.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/salesforceAccountManager/salesforceAccountManager.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/synechronQueNo1/__tests__/synechronQueNo1.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/synechronQueNo1/__tests__/synechronQueNo1.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/synechronQueNo1/synechronQueNo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/synechronQueNo1/synechronQueNo1.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/synechronQueNo1/synechronQueNo1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/synechronQueNo1/synechronQueNo1.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/synechronQueNo1/synechronQueNo1.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/synechronQueNo1/synechronQueNo1.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/synechronQueNo2/__tests__/synechronQueNo2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/synechronQueNo2/__tests__/synechronQueNo2.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/synechronQueNo2/synechronQueNo2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/synechronQueNo2/synechronQueNo2.css -------------------------------------------------------------------------------- /force-app/main/default/lwc/synechronQueNo2/synechronQueNo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/synechronQueNo2/synechronQueNo2.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/synechronQueNo2/synechronQueNo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/synechronQueNo2/synechronQueNo2.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/synechronQueNo2/synechronQueNo2.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/synechronQueNo2/synechronQueNo2.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/trainingScheduler/__tests__/trainingScheduler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/trainingScheduler/__tests__/trainingScheduler.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/trainingScheduler/trainingScheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/trainingScheduler/trainingScheduler.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/trainingScheduler/trainingScheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/trainingScheduler/trainingScheduler.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/trainingScheduler/trainingScheduler.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/trainingScheduler/trainingScheduler.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/updateRecordUsingImperativeApex/__tests__/updateRecordUsingImperativeApex.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/updateRecordUsingImperativeApex/__tests__/updateRecordUsingImperativeApex.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/updateRecordUsingImperativeApex/updateRecordUsingImperativeApex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/updateRecordUsingImperativeApex/updateRecordUsingImperativeApex.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/updateRecordUsingImperativeApex/updateRecordUsingImperativeApex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/updateRecordUsingImperativeApex/updateRecordUsingImperativeApex.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/updateRecordUsingImperativeApex/updateRecordUsingImperativeApex.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/updateRecordUsingImperativeApex/updateRecordUsingImperativeApex.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/weatherAPILWC/ShantanuLWCProjectHub.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/weatherAPILWC/ShantanuLWCProjectHub.code-workspace -------------------------------------------------------------------------------- /force-app/main/default/lwc/weatherAPILWC/WeatherAPILWC.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/weatherAPILWC/WeatherAPILWC.css -------------------------------------------------------------------------------- /force-app/main/default/lwc/weatherAPILWC/__tests__/weatherAPILWC.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/weatherAPILWC/__tests__/weatherAPILWC.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/weatherAPILWC/weatherAPILWC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/weatherAPILWC/weatherAPILWC.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/weatherAPILWC/weatherAPILWC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/weatherAPILWC/weatherAPILWC.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/weatherAPILWC/weatherAPILWC.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/weatherAPILWC/weatherAPILWC.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/whatsAppChat/__tests__/whatsAppChat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/whatsAppChat/__tests__/whatsAppChat.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/whatsAppChat/whatsAppChat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/whatsAppChat/whatsAppChat.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/whatsAppChat/whatsAppChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/whatsAppChat/whatsAppChat.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/whatsAppChat/whatsAppChat.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/lwc/whatsAppChat/whatsAppChat.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/messageChannels/movieChannel.messageChannel-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/messageChannels/movieChannel.messageChannel-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/pages/AccountPDFPage.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/pages/AccountPDFPage.page -------------------------------------------------------------------------------- /force-app/main/default/pages/AccountPDFPage.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/pages/AccountPDFPage.page-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/pages/PlatformEventOppPublisherVF.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/pages/PlatformEventOppPublisherVF.page -------------------------------------------------------------------------------- /force-app/main/default/pages/PlatformEventOppPublisherVF.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/pages/PlatformEventOppPublisherVF.page-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/AmazonQueNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/AmazonQueNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/AmazonQueNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/AmazonQueNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/BatchApexErrorTrigger.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/BatchApexErrorTrigger.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/BatchApexErrorTrigger.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/BatchApexErrorTrigger.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/ContentVersionTrigger.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/ContentVersionTrigger.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/ContentVersionTrigger.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/ContentVersionTrigger.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/CreateCandidateRecordAfterClosedWon.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/CreateCandidateRecordAfterClosedWon.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/CreateCandidateRecordAfterClosedWon.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/CreateCandidateRecordAfterClosedWon.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/EPAMSystemQueNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/EPAMSystemQueNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/EPAMSystemQueNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/EPAMSystemQueNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/FollowerRequestedTriggerNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/FollowerRequestedTriggerNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/FollowerRequestedTriggerNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/FollowerRequestedTriggerNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/FollowerRequestedTriggerNo2.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/FollowerRequestedTriggerNo2.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/FollowerRequestedTriggerNo2.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/FollowerRequestedTriggerNo2.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/GoogleQueNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/GoogleQueNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/GoogleQueNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/GoogleQueNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/HideFeedAttachment.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/HideFeedAttachment.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/HideFeedAttachment.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/HideFeedAttachment.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/InfosysQueNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/InfosysQueNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/InfosysQueNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/InfosysQueNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/LumioPartnersQueNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/LumioPartnersQueNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/LumioPartnersQueNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/LumioPartnersQueNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/MichelinQueNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/MichelinQueNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/MichelinQueNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/MichelinQueNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/MindRubyQueNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/MindRubyQueNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/MindRubyQueNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/MindRubyQueNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/MindRubyQueNo2.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/MindRubyQueNo2.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/MindRubyQueNo2.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/MindRubyQueNo2.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/NTTDataQueNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/NTTDataQueNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/NTTDataQueNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/NTTDataQueNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/OpportunityTrigger.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/OpportunityTrigger.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/OpportunityTrigger.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/OpportunityTrigger.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/PCGIConsultingQueNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/PCGIConsultingQueNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/PCGIConsultingQueNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/PCGIConsultingQueNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/SendFeedBackSurveyLink.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/SendFeedBackSurveyLink.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/SendFeedBackSurveyLink.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/SendFeedBackSurveyLink.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/TCSQueNo1.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/TCSQueNo1.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/TCSQueNo1.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/TCSQueNo1.trigger-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/triggers/TCSQueNo2.trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/TCSQueNo2.trigger -------------------------------------------------------------------------------- /force-app/main/default/triggers/TCSQueNo2.trigger-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/force-app/main/default/triggers/TCSQueNo2.trigger-meta.xml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/manifest/package.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/package.json -------------------------------------------------------------------------------- /scripts/apex/hello.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/scripts/apex/hello.apex -------------------------------------------------------------------------------- /scripts/soql/account.soql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/scripts/soql/account.soql -------------------------------------------------------------------------------- /sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShantanuRajurkar/TrailblazeWithShantanu/HEAD/sfdx-project.json --------------------------------------------------------------------------------