wolf_core 0.1.59 → 0.1.60

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: b5121b62a6d6a0f7b134e4d59072fc092ee22ed776da8e3474fa1b98097dbebd
4
- data.tar.gz: df3e78fc1f1ac94b98aece3032c9ab4cdc029d38d58b67c9feddefa6d60e2dc5
3
+ metadata.gz: d1c77334a21f485565f2ff7dd3f433a1f8695a6379f4896798892ef4847f2bcf
4
+ data.tar.gz: 99a37788f26c5448c7fe01bf86f73f3dbc44de8b530e24f814fe002f311d526e
5
5
  SHA512:
6
- metadata.gz: 9e1a5d83b10d51bb702f2bd7fb23cc3fe68bc179c0f0116768daf40f5929e02e3ab2b208232784489779c22d71cb2715bf5e6aea5f77a7fd4a6b0b5462cb4c04
7
- data.tar.gz: ef9a05201a6e0a15b829638d61ebbd61a01b717e5434235a480bc65a8858928ca75d44434fedc743ba8530edccc2c87029ba5f42fef0cfaf098decff302777b7
6
+ metadata.gz: ec84c7c876e3526b0012273e5fc48ffcd224e229e1aa8b70c75b19ba9b6637029a06c1116b92a00a4681554f6b943a3e78915edee9e45d95289d7802ac277947
7
+ data.tar.gz: cbf4a6e78feed1f250f7389585247798ea9398f6e14fa2fa6b6ecadd9186a8fdf25be898d4b0dc4f16ad08c481f42a552b003e6f565e8d18c143d20234362bb6
@@ -53,8 +53,7 @@ module WolfCore
53
53
  salesforce_access_token: salesforce_access_token,
54
54
  query: { calltype: 'getRecord', RecordId: record_id }
55
55
  )
56
- log_object "foreign object is"
57
- log_object foreign_object
56
+ log_object foreign_object, title: 'foreign object is'
58
57
  foreign_object
59
58
  end
60
59
 
@@ -1,6 +1,7 @@
1
1
  module WolfCore
2
2
  module FkmOperations
3
3
  include WolfCore::HttpOperations
4
+ include WolfCore::ExceptionOperations
4
5
  include WolfCore::LoggingUtils
5
6
 
6
7
  def get_foreign_key_destination_id(tenant:, source:, source_id:, destination:)
@@ -30,6 +31,11 @@ module WolfCore
30
31
  end
31
32
 
32
33
  def create_foreign_key(tenant:, source:, source_id:, destination:, destination_id:)
34
+ raise_service_error('tenant is required to create a foreign key') if tenant.blank?
35
+ raise_service_error('source is required to create a foreign key') if source.blank?
36
+ raise_service_error('source_id is required to create a foreign key') if source_id.blank?
37
+ raise_service_error('destination is required to create a foreign key') if destination.blank?
38
+ raise_service_error('destination_id is required to create a foreign key') if destination_id.blank?
33
39
  response = http_post(
34
40
  url: "#{ENV['FKM_URL']}/Prod/create",
35
41
  body: {
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "0.1.59"
4
+ VERSION = "0.1.60"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.59
4
+ version: 0.1.60
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo