Skip to content

Commit

Permalink
version 0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
gildemberg-santos committed Jun 13, 2022
1 parent 697aef9 commit 231208c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
salesforce (0.1.12)
salesforce (0.1.13)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/salesforce/lead.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def field!
@fields = {}
@required_fields = %w[Company LastName]
fields.map do |field|
type_reject = %w[boolean date datetime]
type_reject = %w[boolean date datetime reference]
next unless field['createable'] || !type_reject.include?(field['type'])

type = 'string'
Expand Down
2 changes: 1 addition & 1 deletion lib/salesforce/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

module Salesforce
VERSION = '0.1.12'
VERSION = '0.1.13'
API_VERSION = 'v54.0'
end

0 comments on commit 231208c

Please sign in to comment.