From 9bec8bf1597c473ae34690d2cfccb01d31f2c368 Mon Sep 17 00:00:00 2001 From: Steve Krall Date: Mon, 20 Aug 2018 09:11:59 -0400 Subject: [PATCH] Update describe-result.d.ts fixing createable typo createable in the Field interface is misspelled see https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_calls_describesobjects_describesobjectresult.htm It should be createable, not creatable. The DescribeSObjectResult has createable spelled correctly --- types/jsforce/describe-result.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/jsforce/describe-result.d.ts b/types/jsforce/describe-result.d.ts index 17da9f5917..f59df9ff59 100644 --- a/types/jsforce/describe-result.d.ts +++ b/types/jsforce/describe-result.d.ts @@ -70,7 +70,7 @@ export interface Field { caseSensitive: boolean; compoundFieldName?: maybe; controllerName?: maybe; - creatable: boolean; + createable: boolean; custom: boolean; defaultValue?: maybe; defaultValueFormula?: maybe;