uc3-dmp-id 0.0.44 → 0.0.46

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 91687cd46faa94794255595d4dfd20df32cf392e569ee8d741dd3229834b4e2f
4
- data.tar.gz: 355e82dd079620e215065f13781d32db62001674fdaf2a189d654f41e1201b10
3
+ metadata.gz: d478a33716920d1d91f8e933febebe7ec8e7a40a3d0bb50d4c50f1e764cf5aec
4
+ data.tar.gz: a073a32740da380be957b1af0061df437640e4126d79518d23b1a366e038f7dc
5
5
  SHA512:
6
- metadata.gz: 8257dda48d262ab0c29074cc211dd80317637752dcc03ee6b647d3f7cd0d97d7fb6684ccb40c2bcd93e3fe0c738235b95c0031c9004bd531a6cef01612a3d555
7
- data.tar.gz: 62fda83c1fe587e865dba7eea3a8a6f910d7bd297eb3846690bcf813eda3df1c4ff5164d7b178ed5432f6932f65923075d8e25602c8deec2060ae80b38f09e73
6
+ metadata.gz: bb614d60d8ba75fd46e8316d39d27f27fc5f7ae3bdd8a91a632951b0abd947a29b075624f7ee211dc65975d6d162d873b949c5a247d2db78f1893e59cdaaaa7a
7
+ data.tar.gz: 6efc441c6c5f74c284d94a476b095eabe35f23b0995cecf8debf27d95a1f7e0f22d8307386a35c6322da045bfa099774f2536ea22010bf5e131420f2a009b275
@@ -64,18 +64,16 @@ module Uc3DmpId
64
64
 
65
65
  # Fetch just the PK to see if a record exists
66
66
  # -------------------------------------------------------------------------
67
- def exists?(client:, p_key:)
67
+ def exists?(p_key:, s_key: Helper::DMP_LATEST_VERSION, client: nil)
68
68
  raise FinderError, MSG_MISSING_PK if p_key.nil?
69
69
 
70
70
  client = client.nil? ? Uc3DmpDynamo::Client.new(debug: debug) : client
71
- resp = client.get_item(
71
+ client.pk_exists?(
72
72
  key: {
73
73
  PK: Helper.append_pk_prefix(p_key: p_key),
74
- SK: s_key.nil? ? Helper::DMP_LATEST_VERSION : s_key
75
- },
76
- projection_expression: 'PK'
74
+ SK: s_key
75
+ }
77
76
  )
78
- resp.is_a?(Hash)
79
77
  end
80
78
 
81
79
  # Attempt to find the DMP item by the provenance system's identifier
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3DmpId
4
- VERSION = '0.0.44'
4
+ VERSION = '0.0.46'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uc3-dmp-id
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.44
4
+ version: 0.0.46
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley