We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a6b3ae commit 4ecb417Copy full SHA for 4ecb417
components/gorgias_oauth/actions/update-ticket-field-values/update-ticket-field-values.mjs
@@ -31,7 +31,12 @@ export default {
31
object_type: "Ticket",
32
},
33
});
34
+ const reservedFields = [
35
+ "call_status",
36
+ "ai_intent",
37
+ ];
38
for (const field of customFields) {
39
+ if (reservedFields.includes(field.managed_type)) continue;
40
const inputType = field?.definition?.input_settings?.input_type;
41
const dataType = field?.definition?.data_type;
42
props[field.id] = {
0 commit comments