zoho_hub 0.1.23 → 0.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.ruby-version +1 -1
- data/lib/zoho_hub.rb +2 -0
- data/lib/zoho_hub/records/adverse_criteria.rb +43 -0
- data/lib/zoho_hub/records/credit_score.rb +36 -0
- data/lib/zoho_hub/records/potential.rb +6 -2
- data/lib/zoho_hub/version.rb +1 -1
- data/zoho_hub.gemspec +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb6b329c2045fd0a7dadd414f9b96a1b4cfd5bbdbddb7667ea0b0f4c4d38e0bf
|
4
|
+
data.tar.gz: 74ea290c360ddd5b23ad0e507044ccfb8f7e5c197a02b2c46ceed1202b2f76a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cae37297374882f67f286e494ff5f5fa4ebb85ffebd7eebac810847a82eb821aefa358e54137590e97838c0a7e9c4135ad7360277f7bd7b45906e23bbac87b2
|
7
|
+
data.tar.gz: aef617d8158a29a5a587dbcdf094a45e01de445186e571156fb4e5d72536f5c932a40e3e05fa83d1f5f88ae923bfe1fbcbe9b4241d6b1ffc47f2b8422ee16513
|
data/.gitignore
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.7.2
|
data/lib/zoho_hub.rb
CHANGED
@@ -16,6 +16,8 @@ require 'zoho_hub/records/quote'
|
|
16
16
|
require 'zoho_hub/records/vendor'
|
17
17
|
require 'zoho_hub/records/product'
|
18
18
|
require 'zoho_hub/records/attachment'
|
19
|
+
require 'zoho_hub/records/credit_score'
|
20
|
+
require 'zoho_hub/records/adverse_criteria'
|
19
21
|
|
20
22
|
module ZohoHub
|
21
23
|
module_function
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'zoho_hub/records/base_record'
|
4
|
+
|
5
|
+
module ZohoHub
|
6
|
+
class AdverseCriteria < BaseRecord
|
7
|
+
request_path 'Adverse_Criteria'
|
8
|
+
|
9
|
+
attributes :id, :account_id, :date_decided, :date_paid
|
10
|
+
attributes :status, :amount, :currency, :court
|
11
|
+
attributes :case_reference, :entity_details, :data_source
|
12
|
+
|
13
|
+
attribute_translation(
|
14
|
+
id: :id,
|
15
|
+
case_reference: :Name,
|
16
|
+
status: :CCJ_Status,
|
17
|
+
amount: :CCJ_Amount,
|
18
|
+
data_source: :CCJ_Data_Source,
|
19
|
+
date_paid: :Date_paid,
|
20
|
+
date_decided: :Date_decided,
|
21
|
+
entity_details: :Entity_details
|
22
|
+
)
|
23
|
+
|
24
|
+
def initialize(params)
|
25
|
+
attributes.each do |attr|
|
26
|
+
zoho_key = attr_to_zoho_key(attr)
|
27
|
+
|
28
|
+
send("#{attr}=", params[zoho_key] || params[attr])
|
29
|
+
end
|
30
|
+
|
31
|
+
# Setup values as they come from the Zoho API if needed
|
32
|
+
@account_id ||= params.dig(:Account, :id)
|
33
|
+
end
|
34
|
+
|
35
|
+
def to_params
|
36
|
+
params = super
|
37
|
+
|
38
|
+
params[:Account] = { id: @account_id } if @account_id
|
39
|
+
|
40
|
+
params
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'zoho_hub/records/base_record'
|
4
|
+
|
5
|
+
module ZohoHub
|
6
|
+
class CreditScore < BaseRecord
|
7
|
+
request_path 'Credit_Scores'
|
8
|
+
|
9
|
+
attributes :id, :account_id, :credit_data_source, :credit_score_band
|
10
|
+
attributes :score_description, :credit_score_number, :credit_limit, :currency
|
11
|
+
|
12
|
+
attribute_translation(
|
13
|
+
id: :id,
|
14
|
+
credit_score_number: :Name
|
15
|
+
)
|
16
|
+
|
17
|
+
def initialize(params)
|
18
|
+
attributes.each do |attr|
|
19
|
+
zoho_key = attr_to_zoho_key(attr)
|
20
|
+
|
21
|
+
send("#{attr}=", params[zoho_key] || params[attr])
|
22
|
+
end
|
23
|
+
|
24
|
+
# Setup values as they come from the Zoho API if needed
|
25
|
+
@account_id ||= params.dig(:Account_Name, :id)
|
26
|
+
end
|
27
|
+
|
28
|
+
def to_params
|
29
|
+
params = super
|
30
|
+
|
31
|
+
params[:Account_Name] = { id: @account_id } if @account_id
|
32
|
+
|
33
|
+
params
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -11,7 +11,8 @@ module ZohoHub
|
|
11
11
|
attributes :campaign_id, :account_id, :contact_id, :campaign_detail, :reviewers_comment
|
12
12
|
attributes :accounting_software, :banking_provider
|
13
13
|
attributes :guarantee_types, :home_ownership_status
|
14
|
-
attributes :accountant_id, :vat_registration
|
14
|
+
attributes :accountant_id, :vat_registration, :published_all_of_market
|
15
|
+
attributes :credit_risk_band, :live_ccjs, :satisfied_ccjs
|
15
16
|
|
16
17
|
DEFAULTS = {
|
17
18
|
currency: 'GBP',
|
@@ -27,7 +28,10 @@ module ZohoHub
|
|
27
28
|
description: :Project_description,
|
28
29
|
employee_count: :Number_of_Employees,
|
29
30
|
use_proceeds: :use_proceeds,
|
30
|
-
vat_registration: :Pick_List_15
|
31
|
+
vat_registration: :Pick_List_15,
|
32
|
+
live_ccjs: :Live_CCJs,
|
33
|
+
satisfied_ccjs: :Satisfied_CCJs,
|
34
|
+
published_all_of_market: :Published_to_All_of_Market
|
31
35
|
)
|
32
36
|
|
33
37
|
def initialize(params)
|
data/lib/zoho_hub/version.rb
CHANGED
data/zoho_hub.gemspec
CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
24
|
spec.require_paths = ['lib']
|
25
25
|
|
26
|
-
spec.add_dependency 'activesupport', '
|
26
|
+
spec.add_dependency 'activesupport', '> 5'
|
27
27
|
spec.add_dependency 'addressable', '~> 2.5'
|
28
28
|
spec.add_dependency 'faraday', '~> 0.15'
|
29
29
|
spec.add_dependency 'faraday_middleware', '~> 0.12'
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zoho_hub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.28
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ricardo Otero
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '5
|
19
|
+
version: '5'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '5
|
26
|
+
version: '5'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: addressable
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -230,10 +230,12 @@ files:
|
|
230
230
|
- lib/zoho_hub/connection.rb
|
231
231
|
- lib/zoho_hub/errors.rb
|
232
232
|
- lib/zoho_hub/records/account.rb
|
233
|
+
- lib/zoho_hub/records/adverse_criteria.rb
|
233
234
|
- lib/zoho_hub/records/attachment.rb
|
234
235
|
- lib/zoho_hub/records/base_record.rb
|
235
236
|
- lib/zoho_hub/records/campaign.rb
|
236
237
|
- lib/zoho_hub/records/contact.rb
|
238
|
+
- lib/zoho_hub/records/credit_score.rb
|
237
239
|
- lib/zoho_hub/records/potential.rb
|
238
240
|
- lib/zoho_hub/records/product.rb
|
239
241
|
- lib/zoho_hub/records/quote.rb
|
@@ -260,8 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
260
262
|
- !ruby/object:Gem::Version
|
261
263
|
version: '0'
|
262
264
|
requirements: []
|
263
|
-
|
264
|
-
rubygems_version: 2.7.6
|
265
|
+
rubygems_version: 3.1.4
|
265
266
|
signing_key:
|
266
267
|
specification_version: 4
|
267
268
|
summary: Simple gem to connect to Zoho CRM API V2
|