From dbbb249c64d5a8df174b4c801838962897164f44 Mon Sep 17 00:00:00 2001 From: Waseem Awashra Date: Sun, 8 Feb 2026 17:51:06 +0200 Subject: [PATCH 1/2] disclose property if readonly --- lib/api.ex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/api.ex b/lib/api.ex index 2ea9871..3b61bdd 100644 --- a/lib/api.ex +++ b/lib/api.ex @@ -667,7 +667,8 @@ defmodule ExForce.API do title: field["label"], id: field["name"], type: field["type"], - is_custom_property: field["custom"] + is_custom_property: field["custom"], + is_read_only: field["updateable"] } end From f1203c703b3aaf464c84d903550eafc88c4569ec Mon Sep 17 00:00:00 2001 From: Waseem Awashra Date: Mon, 9 Feb 2026 11:42:36 +0200 Subject: [PATCH 2/2] disclose property if readonly --- lib/api.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api.ex b/lib/api.ex index 3b61bdd..db14d60 100644 --- a/lib/api.ex +++ b/lib/api.ex @@ -668,7 +668,7 @@ defmodule ExForce.API do id: field["name"], type: field["type"], is_custom_property: field["custom"], - is_read_only: field["updateable"] + is_read_only: not field["updateable"] } end