You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/salesforce_rest_api/sources/new-record-instant/new-record-instant.mjs
+22-5Lines changed: 22 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,21 @@ export default {
7
7
name: "New Record (Instant, of Selectable Type)",
8
8
key: "salesforce_rest_api-new-record-instant",
9
9
description: "Emit new event when a record of the selected object type is created. [See the documentation](https://sforce.co/3yPSJZy)",
10
-
version: "0.1.0",
10
+
version: "0.2.0",
11
+
props: {
12
+
...common.props,
13
+
fieldsToObtain: {
14
+
propDefinition: [
15
+
common.props.salesforce,
16
+
"fieldsToObtain",
17
+
(c)=>({
18
+
objType: c.objectType,
19
+
}),
20
+
],
21
+
optional: true,
22
+
description: "Select the field(s) to be retrieved for the records. Only applicable if the source is running on a timer. If running on a webhook, or if not specified, all fields will be retrieved.",
0 commit comments