allscripts_unity_client 3.1.0 → 3.1.1
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2cc1dc6e9c9c75d6a6e1910bca9b2949d9907be4
|
|
4
|
+
data.tar.gz: aca63c503d524f44ff7573f521da8f9ca476833c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95c6526bd79d086d10ce6ef806b372f84cd4ac54b2ab346d026beb9ac7ae64ba3e98b835af1c1d324baab12377dee055b7021f62e72137eca3af49d66b05c4c6
|
|
7
|
+
data.tar.gz: 86d424f27dbab33e81dca8604554cdc4cac8155c787b404ab31f1cacc380237782cd80f1a18a2067c1bbcce07b9059e098c262babf1c1d7f2c164be3284cdad7
|
|
@@ -4,7 +4,7 @@ module AllscriptsUnityClient
|
|
|
4
4
|
|
|
5
5
|
# Providers an interface to access Unity endpoints.
|
|
6
6
|
#
|
|
7
|
-
# Build using a
|
|
7
|
+
# Build using a dependency injection pattern. A Client instances takes an instance of
|
|
8
8
|
# ClientDriver and delegates Unity endpoint methods to the ClientDriver.
|
|
9
9
|
class Client
|
|
10
10
|
attr_accessor :client_driver
|
|
@@ -139,11 +139,12 @@ module AllscriptsUnityClient
|
|
|
139
139
|
magic(magic_parameters)
|
|
140
140
|
end
|
|
141
141
|
|
|
142
|
-
def get_clinical_summary(userid, patientid)
|
|
142
|
+
def get_clinical_summary(userid, patientid, extra_med_data = false)
|
|
143
143
|
magic_parameters = {
|
|
144
144
|
action: 'GetClinicalSummary',
|
|
145
145
|
userid: userid,
|
|
146
|
-
patientid: patientid
|
|
146
|
+
patientid: patientid,
|
|
147
|
+
parameter3: extra_med_data ? 'Y' : nil
|
|
147
148
|
}
|
|
148
149
|
response = magic(magic_parameters)
|
|
149
150
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: allscripts_unity_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lucian Cesca
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httpclient
|
|
@@ -282,7 +282,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
282
282
|
version: '0'
|
|
283
283
|
requirements: []
|
|
284
284
|
rubyforge_project:
|
|
285
|
-
rubygems_version: 2.4.
|
|
285
|
+
rubygems_version: 2.4.8
|
|
286
286
|
signing_key:
|
|
287
287
|
specification_version: 4
|
|
288
288
|
summary: Allscripts Unity API client
|