@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
|
@@ -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
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
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
|
|
9
|
-
key: "salesforce_rest_api-
|
|
10
|
-
description: "Emit new event (at regular intervals) when
|
|
11
|
-
version: "0.1.
|
|
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
|
|
9
|
-
key: "salesforce_rest_api-
|
|
10
|
-
description: "Emit new event immediately after
|
|
11
|
-
version: "0.1.
|
|
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) {
|