uc3-dmp-id 0.0.45 → 0.0.46

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: 4739bcdc46f0ec109252c1c0917fc772c5447b6fd910cdeddfce71390296dc33
4
- data.tar.gz: 5009a66acd32dc4be8f7c1e43a377df5e8210626d3162e02bca204334bb0f348
3
+ metadata.gz: d478a33716920d1d91f8e933febebe7ec8e7a40a3d0bb50d4c50f1e764cf5aec
4
+ data.tar.gz: a073a32740da380be957b1af0061df437640e4126d79518d23b1a366e038f7dc
5
5
  SHA512:
6
- metadata.gz: 1d7ca8df8ce4936b5c97a9199a154ff442a76a6b6255a51f9feec9799b90ed6c596243205fd4bf1ce9b9ea8bb17341df103d8d4c5f3490a1f48ffccc06bf6772
7
- data.tar.gz: 33f6cd353c07c4432945ed93384510497cb957a62907bedfafd51b2cc3e6fdb577396607fb26dc536001eb01ee409e7ee853822ce2cbc62e3e0c644dadcf46b9
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:, s_key: Helper::DMP_LATEST_VERSION)
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
74
  SK: s_key
75
- },
76
- projection_expression: 'PK'
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.45'
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.45
4
+ version: 0.0.46
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley