npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@godspeedsystems/plugins-salesforce-as-datasource-as-eventsource

v1.0.4

Published

salesforce as datasource-as-eventsource plugin for Godspeed Framework

Downloads

38

Readme

godspeed-plugin-salesforce-as-datasource-as-eventsource

Welcome to the Godspeed salesforce Plugin! 🚀

Salesforce is a powerful cloud-based customer relationship management (CRM) platform that enables businesses to manage their sales, marketing, and customer service operations efficiently.

A brief description of how to use Salesforce plug-in in our godspeed framework as Data Source as Event Source.

Note: This Salesforce plugin is both a datasource (via its API) and an eventsource (to listen on Salesforce events). Learn more about datasource-as-eventsource type plugins.

As explained in the link shared just before, in order to use Salesforce as an eventsource, you will need to set up the datasource as well. This plugin uses the Salesforce Node.js SDK. If you want to call Salesforce APIs via REST, then you should not use this plugin. For that, you can use the Axios plugin.

Steps to use Salesforce plug-in in godspeed framework:

How to Use

  • Create a godspeed project from the CLI , open the created project in vscode and then add the plugin from the CLI of vscode, select the @godspeedsystems/plugins-salesforce-as-datasource-as-eventsource to integrate the plugin.
> godspeed plugin add
       ,_,   ╔════════════════════════════════════╗
      (o,o)  ║        Welcome to Godspeed         ║
     ({___}) ║    World's First Meta Framework    ║
       " "   ╚════════════════════════════════════╝
? Please select godspeed plugin to install: (Press <space> to select, <Up and Down> to move rows)
┌──────┬────────────────────────────────────┬────────────────────────────────────────────────────────────────────┐
│      │ Name                               │ Description                                                        │
├──────┼────────────────────────────────────┼────────────────────────────────────────────────────────────────────┤
│  ◯   │ prisma-as-datastore                │ Prisma as a datasource plugin for Godspeed Framework.              │
├──────┼────────────────────────────────────┼────────────────────────────────────────────────────────────────────┤
│  ◯   │ aws-as-datasource                  │ aws as datasource plugin for Godspeed Framework                    │
├──────┼────────────────────────────────────┼────────────────────────────────────────────────────────────────────┤
│  ◯   │ excel-as-datasource                │ excel as datasource plugin for Godspeed Framework                  │
├──────┼────────────────────────────────────┼────────────────────────────────────────────────────────────────────┤
│  ◯   │ mailer-as-datasource               │ mailer as datasource plugin for Godspeed Framework                 │
├──────┼────────────────────────────────────┼────────────────────────────────────────────────────────────────────┤
│ ❯◯   │ salesforce-as-datasource-as-eventsource │ salesforce as datasource-as-eventsource plugin for Godspeed Framework   │
└──────┴────────────────────────────────────┴────────────────────────────────────────────────────────────────────┘

Example usage EventSource (Consumer):

  1. Update configuration file based on your requirements in Eventsources/salesforce.yaml.

salesforce config ( salesforce.yaml )

type: salesforce
loginUrl: <%config.salesforce.loginUrl%>
username: <%config.salesforce.username%>
password: <%config.salesforce.password%>

salesforce event for consumer ( src/events/salesforce.yaml )

To use Consumer we need to follow the below event key format.

A Salesforce event is specified as 'salesforce.{topic_name}'. 'topic_name' represents the Salesforce event.

The consumer event is triggered whenever a new message arrives on the specified topic. Upon triggering, it retrieves the incoming message and forwards it to the salesforce_consume function. Inside this function, the incoming message is processed, and the result is then returned.

# event for consume data from Topic
salesforce.salesforce_topic_name: 
  id: salesforce__consumer
  fn: salesforce_consume
  body:
    description: The body of the query
    content:
      application/json: 
        schema:
          type: string

salesforce workflow for Consumer ( src/functions/salesforce_consume.yaml )

# function for consume data
id: salesforce-consumer
summary: consumer
tasks:
    - id: set_consumer
      fn: com.gs.return
      args: <% inputs.body.payload %>

Thank You For Using Godspeed