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/airtable_oauth/airtable_oauth.app.mjs
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -180,8 +180,8 @@ export default {
180
180
},
181
181
returnFieldsByFieldId: {
182
182
type: "boolean",
183
-
label: "Return Fields By Field ID",
184
-
description: "If set to `true`, the returned field objects will have the field ID as the key, instead of the field name (default behavior).",
183
+
label: "Return Fields By ID",
184
+
description: "If set to `true`, the returned field objects will have the field ID as the key, instead of the field name.",
185
185
optional: true,
186
186
},
187
187
sortDirection: {
@@ -212,13 +212,20 @@ export default {
212
212
typecast: {
213
213
type: "boolean",
214
214
label: "Typecast",
215
-
description: "The Airtable API will perform best-effort automatic data conversion from string values if the typecast parameter is `True`. Automatic conversion is disabled by default to ensure data integrity, but it may be helpful for integrating with 3rd party data sources.",
215
+
description: "The Airtable API will perform best-effort automatic data conversion from string values if the typecast parameter is `True`. This is disabled by default to ensure data integrity, but it may be helpful for integrating with 3rd party data sources.",
216
216
optional: true,
217
217
},
218
218
record: {
219
219
type: "object",
220
220
label: "Record",
221
-
description: "Enter the column name for the key and the corresponding column value. You can include all, some, or none of the field values. You may also pass a JSON object as a custom expression with key/value pairs representing columns and values (e.g., `{{ {\"foo\":\"bar\",\"id\":123} }}`). A common pattern is to reference an object exported by a previous step (e.g., `{{steps.foo.$return_value}}`).",
221
+
description: "Enter the column name for the key and the corresponding column value. You can include all, some, or none of the field values. You may also use a custom expression.",
222
+
},
223
+
customExpressionInfo: {
224
+
type: "alert",
225
+
alertType: "info",
226
+
content: `A custom expression can be a JSON object with key/value pairs representing columns and values, e.g. \`{{ { "foo": "bar", "id": 123 } }}\`.
227
+
\\\\
228
+
You can also reference an object exported by a previous step, e.g. \`{{steps.foo.$return_value}}\`.`,
0 commit comments