lib/sourcescrub/models/company.rb in sourcescrub-0.1.2 vs lib/sourcescrub/models/company.rb in sourcescrub-0.1.3
- old
+ new
@@ -6,10 +6,11 @@
module Models
# Company
class Company < Entity
ENDPOINT = 'companies'
+ # rubocop:disable Metrics/MethodLength
def field_ids
%w[
id
companyType
name
@@ -30,15 +31,26 @@
twitter
crunchbase
linkedIn
totalAmountInvested
currentEmployeeCount
+ threeMonthsGrowthRate
+ sixMonthsGrowthRate
+ nineMonthsGrowthRate
+ twelveMonthsGrowthRate
currentEmployeeRange
currentJobOpenings
+ growthIntent
investors
personalTags
firmTags
+ customScore
+ industries
+ modifiedDate
+ endMarkets
+ productsAndServices
]
end
+ # rubocop:enable Metrics/MethodLength
end
end
end