@pipedream/salesforce_rest_api 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/salesforce_rest_api",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Pipedream Salesforce (REST API) Components",
5
5
  "main": "salesforce_rest_api.app.mjs",
6
6
  "keywords": [
@@ -512,12 +512,12 @@ export default {
512
512
  async parameterizedSearch(params) {
513
513
  const baseUrl = this._baseApiVersionUrl();
514
514
  const url = `${baseUrl}/parameterizedSearch/`;
515
-
516
- return this._makeRequest({
517
- url,
518
- method: 'GET',
519
- params,
520
- });
515
+
516
+ return this._makeRequest({
517
+ url,
518
+ method: "GET",
519
+ params,
520
+ });
521
521
  },
522
522
  async insertBlobData(sobjectName, {
523
523
  $, headers, data,
@@ -5,10 +5,10 @@ import constants from "../../common/constants.mjs";
5
5
  export default {
6
6
  ...common,
7
7
  type: "source",
8
- name: "New Updated Object (of Selectable Type)",
9
- key: "salesforce_rest_api-object-updated",
10
- description: "Emit new event (at regular intervals) when an object of arbitrary type (selected as an input parameter by the user) is updated. [See the docs](https://sforce.co/3yPSJZy) for more information.",
11
- version: "0.1.11",
8
+ name: "New Updated Record (of Selectable Type)",
9
+ key: "salesforce_rest_api-record-updated",
10
+ description: "Emit new event (at regular intervals) when a record of arbitrary type (selected as an input parameter by the user) is updated. [See the docs](https://sforce.co/3yPSJZy) for more information.",
11
+ version: "0.1.12",
12
12
  hooks: {
13
13
  ...common.hooks,
14
14
  async activate() {
@@ -5,10 +5,10 @@ import common from "../common-instant.mjs";
5
5
  export default {
6
6
  ...common,
7
7
  type: "source",
8
- name: "New Updated Object (Instant, of Selectable Type)",
9
- key: "salesforce_rest_api-object-updated-instant",
10
- description: "Emit new event immediately after an object of arbitrary type (selected as an input parameter by the user) is updated",
11
- version: "0.1.6",
8
+ name: "New Updated Record (Instant, of Selectable Type)",
9
+ key: "salesforce_rest_api-record-updated-instant",
10
+ description: "Emit new event immediately after a record of arbitrary type (selected as an input parameter by the user) is updated",
11
+ version: "0.1.7",
12
12
  methods: {
13
13
  ...common.methods,
14
14
  generateMeta(data) {