zoho_hub 0.1.25 → 0.1.26

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0fb0e65b3b5261334de8e0132b49ba57069ac73795e0b8fbafd953525c321946
4
- data.tar.gz: cffbddbec5d01c1128465494a536973ae4f0bd557e8d55581128bc51b89b8a5e
3
+ metadata.gz: 7cd6e943b7e3cd1594b439c7462c27030887485fcc474a9c06e745482c916fbc
4
+ data.tar.gz: 17ee52ebedfaff28a92816d9ad780ce11759a3a1ce5efac2c0e0b0babba2f69f
5
5
  SHA512:
6
- metadata.gz: 274a760138b2cc5f6799b07a30f8a68aaa0ed3fb9f0c118d53835ad10d8d31d1aae3298ec4a84d339a4bde4508643fd1d71ba7cfd4a583636c95784fef3268bd
7
- data.tar.gz: 76422df68817cc51a1bc2e8bb2f95c5cdedf845ff2cfa322a7c6ddddd0d55d62cc8f18b4c820800d729de4320f3277e6dc65d3d2e1160e23c78fc14fcc8ac38d
6
+ metadata.gz: ae85f37a8d1001f0d2892e6698532e0870d2632e595b74b4faa5ac62d2aad5c85fd932f5997fc8449efe9fac007f7169737e2e2e53868683c7cc0139c699212c
7
+ data.tar.gz: bcc460d1dda844a548c4260ffcf53c496814270d9396446ccabe96012dda2f2adeafea0a3a291ca48dcd83b727606bafb8929a19452fb8623c658a5ecfc0b20c
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
@@ -12,6 +12,7 @@ module ZohoHub
12
12
  attributes :accounting_software, :banking_provider
13
13
  attributes :guarantee_types, :home_ownership_status
14
14
  attributes :accountant_id, :vat_registration
15
+ attributes :credit_risk_band, :live_ccjs, :satisfied_ccjs
15
16
 
16
17
  DEFAULTS = {
17
18
  currency: 'GBP',
@@ -27,7 +28,9 @@ 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
31
34
  )
32
35
 
33
36
  def initialize(params)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ZohoHub
4
- VERSION = '0.1.25'
4
+ VERSION = '0.1.26'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zoho_hub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.25
4
+ version: 0.1.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ricardo Otero
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-12-28 00:00:00.000000000 Z
11
+ date: 2021-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -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