usps-imis-api 0.11.30 → 0.11.31
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 89c0e9fe29de0f31798abeccd536e5baf2cc453cc230a8b895cbbe75dbe2e8ee
|
|
4
|
+
data.tar.gz: 6757e0a1dce8914c5721cc35adee3e7e84ae8cfb9fcfb3e2ccd1645a9b396a9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b655813057769181c8d4fb0f7d3780dc6b74bc5c4c24be99e6301994933771cfacfbac0d77bfdea7b449986ce87f025addd06c8c132c5201f813c198a4f0b951
|
|
7
|
+
data.tar.gz: edf1815b9d585f27e2f15d450efd0708905b847bc24f5ef5fc34dae9162b652cd4f38a4924303175bb8d649d792f1c3714301d94d1981050b3225e32a9b53a2b
|
|
@@ -11,6 +11,7 @@ module Usps
|
|
|
11
11
|
certificate: ['Member certificate number', { type: :string }],
|
|
12
12
|
id: ['Member iMIS ID', { type: :integer }],
|
|
13
13
|
record_id: ['Specific Record ID', { type: :integer, short: :I }],
|
|
14
|
+
uuid: ['Record UUID', { type: :string }],
|
|
14
15
|
|
|
15
16
|
# Primary interactions
|
|
16
17
|
on: ['Business Object name', { type: :string }],
|
|
@@ -44,7 +45,8 @@ module Usps
|
|
|
44
45
|
}.freeze
|
|
45
46
|
|
|
46
47
|
CONFLICTING_OPTION_GROUPS = [
|
|
47
|
-
%i[certificate id],
|
|
48
|
+
%i[certificate id uuid],
|
|
49
|
+
%i[record_id uuid],
|
|
48
50
|
%i[on panel query mapper map business_objects auth_token],
|
|
49
51
|
%i[field fields map query],
|
|
50
52
|
%i[raw include_ids],
|
data/lib/usps/imis/version.rb
CHANGED