primary_connect_client 1.9.0 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +7 -0
  3. data/README.md +10 -5
  4. data/docs/DefaultApi.md +140 -0
  5. data/docs/Meta.md +3 -1
  6. data/docs/MetaDestination.md +22 -0
  7. data/docs/MetaProvenances.md +22 -0
  8. data/docs/Order.md +1 -1
  9. data/docs/OrderPatient.md +24 -0
  10. data/docs/OrderPatientContacts.md +28 -0
  11. data/docs/Patient.md +1 -1
  12. data/docs/Result.md +3 -1
  13. data/lib/primary_connect_client/api/default_api.rb +126 -0
  14. data/lib/primary_connect_client/models/meta.rb +15 -4
  15. data/lib/primary_connect_client/models/meta_destination.rb +237 -0
  16. data/lib/primary_connect_client/models/meta_provenances.rb +237 -0
  17. data/lib/primary_connect_client/models/order.rb +1 -1
  18. data/lib/primary_connect_client/models/order_patient.rb +254 -0
  19. data/lib/primary_connect_client/models/order_patient_contacts.rb +305 -0
  20. data/lib/primary_connect_client/models/patient.rb +1 -1
  21. data/lib/primary_connect_client/models/result.rb +13 -4
  22. data/lib/primary_connect_client/version.rb +1 -1
  23. data/lib/primary_connect_client.rb +4 -1
  24. data/primary_connect_client.gemspec +39 -0
  25. data/spec/api/default_api_spec.rb +23 -0
  26. data/spec/models/demographics_spec.rb +1 -1
  27. data/spec/models/meta_destination_spec.rb +46 -0
  28. data/spec/models/meta_provenances_spec.rb +46 -0
  29. data/spec/models/meta_spec.rb +6 -0
  30. data/spec/models/order_patient_contacts_spec.rb +68 -0
  31. data/spec/models/order_patient_spec.rb +52 -0
  32. data/spec/models/result_spec.rb +6 -0
  33. metadata +23 -11
  34. data/.openapi-generator/FILES +0 -180
  35. data/.openapi-generator/VERSION +0 -1
  36. data/.openapi-generator-ignore +0 -23
  37. data/.rspec +0 -2
  38. data/.rubocop.yml +0 -148
@@ -169,6 +169,29 @@ describe 'DefaultApi' do
169
169
  end
170
170
  end
171
171
 
172
+ # unit tests for reroute_order
173
+ # reroute Order identified in the payload
174
+ # @param [Hash] opts the optional parameters
175
+ # @option opts [Order] :order
176
+ # @return [nil]
177
+ describe 'reroute_order test' do
178
+ it 'should work' do
179
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
180
+ end
181
+ end
182
+
183
+ # unit tests for reroute_order_by_ulid
184
+ # Reroute order by ULID
185
+ # @param id Order ID
186
+ # @param [Hash] opts the optional parameters
187
+ # @option opts [Order] :order
188
+ # @return [nil]
189
+ describe 'reroute_order_by_ulid test' do
190
+ it 'should work' do
191
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
192
+ end
193
+ end
194
+
172
195
  # unit tests for update_order
173
196
  # update order
174
197
  # @param id Order ID
@@ -86,7 +86,7 @@ describe PrimaryConnectClient::Demographics do
86
86
  describe 'test attribute "race_details"' do
87
87
  it 'should work' do
88
88
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
89
- # validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["RACE_DETAIL_UNKNOWN", "RACE_DETAIL_ASIAN_INDIAN", "RACE_DETAIL_CHINESE", "RACE_DETAIL_CAMBODIAN", "RACE_DETAIL_FILIPINO", "RACE_DETAIL_JAPANESE", "RACE_DETAIL_KOREAN", "RACE_DETAIL_LAOTIAN", "RACE_DETAIL_VIETNAMESE", "RACE_DETAIL_OTHER_ASIAN", "RACE_DETAIL_NATIVE_HAWAIIAN", "RACE_DETAIL_GUAMIAN_OR_CHAMORRO", "RACE_DETAIL_SAMOAN", "RACE_DETAIL_OTHER_PACIFIC_ISLANDER", "RACE_DETAIL_PREFER_NOT_TO_DISCLOSE"])
89
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('Array<String>', ["RACE_DETAIL_UNKNOWN", "RACE_DETAIL_ASIAN_INDIAN", "RACE_DETAIL_CHINESE", "RACE_DETAIL_CAMBODIAN", "RACE_DETAIL_FILIPINO", "RACE_DETAIL_JAPANESE", "RACE_DETAIL_KOREAN", "RACE_DETAIL_LAOTIAN", "RACE_DETAIL_VIETNAMESE", "RACE_DETAIL_OTHER_ASIAN", "RACE_DETAIL_NATIVE_HAWAIIAN", "RACE_DETAIL_GUAMIAN_OR_CHAMORRO", "RACE_DETAIL_SAMOAN", "RACE_DETAIL_OTHER_PACIFIC_ISLANDER", "RACE_DETAIL_PREFER_NOT_TO_DISCLOSE", "RACE_DETAIL_BANGLADESHI", "RACE_DETAIL_HMONG", "RACE_DETAIL_INDONESIAN", "RACE_DETAIL_MALAYSIAN", "RACE_DETAIL_PAKISTANI", "RACE_DETAIL_SRI_LANKAN", "RACE_DETAIL_THAI", "RACE_DETAIL_TAIWANESE", "RACE_DETAIL_GUAMANIAN", "RACE_DETAIL_FIJIAN", "RACE_DETAIL_TONGAN"])
90
90
  # validator.allowable_values.each do |value|
91
91
  # expect { instance.race_details = value }.not_to raise_error
92
92
  # end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Primary Connect API V1
3
+
4
+ #Client Library to interface with Primary Connect
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PrimaryConnectClient::MetaDestination
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PrimaryConnectClient::MetaDestination do
21
+ let(:instance) { PrimaryConnectClient::MetaDestination.new }
22
+
23
+ describe 'test an instance of MetaDestination' do
24
+ it 'should create an instance of MetaDestination' do
25
+ expect(instance).to be_instance_of(PrimaryConnectClient::MetaDestination)
26
+ end
27
+ end
28
+ describe 'test attribute "id"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "name"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "config"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Primary Connect API V1
3
+
4
+ #Client Library to interface with Primary Connect
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PrimaryConnectClient::MetaProvenances
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PrimaryConnectClient::MetaProvenances do
21
+ let(:instance) { PrimaryConnectClient::MetaProvenances.new }
22
+
23
+ describe 'test an instance of MetaProvenances' do
24
+ it 'should create an instance of MetaProvenances' do
25
+ expect(instance).to be_instance_of(PrimaryConnectClient::MetaProvenances)
26
+ end
27
+ end
28
+ describe 'test attribute "destination"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "placer_id"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "rerouted_at"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end
@@ -83,4 +83,10 @@ describe PrimaryConnectClient::Meta do
83
83
  end
84
84
  end
85
85
 
86
+ describe 'test attribute "provenances"' do
87
+ it 'should work' do
88
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
89
+ end
90
+ end
91
+
86
92
  end
@@ -0,0 +1,68 @@
1
+ =begin
2
+ #Primary Connect API V1
3
+
4
+ #Client Library to interface with Primary Connect
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PrimaryConnectClient::OrderPatientContacts
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PrimaryConnectClient::OrderPatientContacts do
21
+ let(:instance) { PrimaryConnectClient::OrderPatientContacts.new }
22
+
23
+ describe 'test an instance of OrderPatientContacts' do
24
+ it 'should create an instance of OrderPatientContacts' do
25
+ expect(instance).to be_instance_of(PrimaryConnectClient::OrderPatientContacts)
26
+ end
27
+ end
28
+ describe 'test attribute "name"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "address"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "phone_numbers"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "relation_to_patient"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["RELATIONSHIP_UNKNOWN", "RELATIONSHIP_OTHER", "RELATIONSHIP_SELF", "RELATIONSHIP_SPOUSE", "RELATIONSHIP_LIFE_PARTNER", "RELATIONSHIP_CHILD", "RELATIONSHIP_FATHER", "RELATIONSHIP_MOTHER", "RELATIONSHIP_GUARDIAN", "RELATIONSHIP_PARENT", "RELATIONSHIP_GRANDPARENT", "RELATIONSHIP_GRANDCHILD", "RELATIONSHIP_SIBLING", "RELATIONSHIP_EMPLOYER"])
50
+ # validator.allowable_values.each do |value|
51
+ # expect { instance.relation_to_patient = value }.not_to raise_error
52
+ # end
53
+ end
54
+ end
55
+
56
+ describe 'test attribute "email_addresses"' do
57
+ it 'should work' do
58
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
59
+ end
60
+ end
61
+
62
+ describe 'test attribute "roles"' do
63
+ it 'should work' do
64
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
65
+ end
66
+ end
67
+
68
+ end
@@ -0,0 +1,52 @@
1
+ =begin
2
+ #Primary Connect API V1
3
+
4
+ #Client Library to interface with Primary Connect
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for PrimaryConnectClient::OrderPatient
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe PrimaryConnectClient::OrderPatient do
21
+ let(:instance) { PrimaryConnectClient::OrderPatient.new }
22
+
23
+ describe 'test an instance of OrderPatient' do
24
+ it 'should create an instance of OrderPatient' do
25
+ expect(instance).to be_instance_of(PrimaryConnectClient::OrderPatient)
26
+ end
27
+ end
28
+ describe 'test attribute "identifiers"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "demographics"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "notes"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "contacts"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ end
@@ -151,4 +151,10 @@ describe PrimaryConnectClient::Result do
151
151
  end
152
152
  end
153
153
 
154
+ describe 'test attribute "procedure"' do
155
+ it 'should work' do
156
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
157
+ end
158
+ end
159
+
154
160
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: primary_connect_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-18 00:00:00.000000000 Z
11
+ date: 2023-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -36,20 +36,20 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: 0.21.0
39
+ version: 0.23.0
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 0.21.0
42
+ version: 0.23.0
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - "~>"
48
48
  - !ruby/object:Gem::Version
49
- version: 0.21.0
49
+ version: 0.23.0
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 0.21.0
52
+ version: 0.23.0
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: rspec
55
55
  requirement: !ruby/object:Gem::Requirement
@@ -77,11 +77,6 @@ executables: []
77
77
  extensions: []
78
78
  extra_rdoc_files: []
79
79
  files:
80
- - ".openapi-generator-ignore"
81
- - ".openapi-generator/FILES"
82
- - ".openapi-generator/VERSION"
83
- - ".rspec"
84
- - ".rubocop.yml"
85
80
  - CHANGELOG.md
86
81
  - Gemfile
87
82
  - Gemfile.lock
@@ -105,8 +100,10 @@ files:
105
100
  - docs/Medication.md
106
101
  - docs/MedicationAdministration.md
107
102
  - docs/Meta.md
103
+ - docs/MetaDestination.md
108
104
  - docs/MetaDestinations.md
109
105
  - docs/MetaMessage.md
106
+ - docs/MetaProvenances.md
110
107
  - docs/MetaSource.md
111
108
  - docs/MetaTransmission.md
112
109
  - docs/Name.md
@@ -117,6 +114,8 @@ files:
117
114
  - docs/OrderOrderDiagnoses.md
118
115
  - docs/OrderOrderOrderingFacility.md
119
116
  - docs/OrderOrderSpecimen.md
117
+ - docs/OrderPatient.md
118
+ - docs/OrderPatientContacts.md
120
119
  - docs/OrderWithEventErrors.md
121
120
  - docs/Orders.md
122
121
  - docs/OrdersOrders.md
@@ -169,8 +168,10 @@ files:
169
168
  - lib/primary_connect_client/models/medication.rb
170
169
  - lib/primary_connect_client/models/medication_administration.rb
171
170
  - lib/primary_connect_client/models/meta.rb
171
+ - lib/primary_connect_client/models/meta_destination.rb
172
172
  - lib/primary_connect_client/models/meta_destinations.rb
173
173
  - lib/primary_connect_client/models/meta_message.rb
174
+ - lib/primary_connect_client/models/meta_provenances.rb
174
175
  - lib/primary_connect_client/models/meta_source.rb
175
176
  - lib/primary_connect_client/models/meta_transmission.rb
176
177
  - lib/primary_connect_client/models/name.rb
@@ -180,6 +181,8 @@ files:
180
181
  - lib/primary_connect_client/models/order_order_clinical_info.rb
181
182
  - lib/primary_connect_client/models/order_order_diagnoses.rb
182
183
  - lib/primary_connect_client/models/order_order_ordering_facility.rb
184
+ - lib/primary_connect_client/models/order_patient.rb
185
+ - lib/primary_connect_client/models/order_patient_contacts.rb
183
186
  - lib/primary_connect_client/models/order_with_event_errors.rb
184
187
  - lib/primary_connect_client/models/orders.rb
185
188
  - lib/primary_connect_client/models/orders_orders.rb
@@ -206,6 +209,7 @@ files:
206
209
  - lib/primary_connect_client/models/visit_insured.rb
207
210
  - lib/primary_connect_client/models/visit_plan.rb
208
211
  - lib/primary_connect_client/version.rb
212
+ - primary_connect_client.gemspec
209
213
  - spec/api/default_api_spec.rb
210
214
  - spec/api_client_spec.rb
211
215
  - spec/configuration_spec.rb
@@ -225,8 +229,10 @@ files:
225
229
  - spec/models/measurement_spec.rb
226
230
  - spec/models/medication_administration_spec.rb
227
231
  - spec/models/medication_spec.rb
232
+ - spec/models/meta_destination_spec.rb
228
233
  - spec/models/meta_destinations_spec.rb
229
234
  - spec/models/meta_message_spec.rb
235
+ - spec/models/meta_provenances_spec.rb
230
236
  - spec/models/meta_source_spec.rb
231
237
  - spec/models/meta_spec.rb
232
238
  - spec/models/meta_transmission_spec.rb
@@ -237,6 +243,8 @@ files:
237
243
  - spec/models/order_order_ordering_facility_spec.rb
238
244
  - spec/models/order_order_spec.rb
239
245
  - spec/models/order_order_specimen_spec.rb
246
+ - spec/models/order_patient_contacts_spec.rb
247
+ - spec/models/order_patient_spec.rb
240
248
  - spec/models/order_spec.rb
241
249
  - spec/models/order_with_event_errors_spec.rb
242
250
  - spec/models/orders_orders_spec.rb
@@ -301,7 +309,9 @@ test_files:
301
309
  - spec/models/meta_transmission_spec.rb
302
310
  - spec/models/results_spec.rb
303
311
  - spec/models/v2_device_spec.rb
312
+ - spec/models/meta_provenances_spec.rb
304
313
  - spec/models/result_ids_spec.rb
314
+ - spec/models/meta_destination_spec.rb
305
315
  - spec/models/result_reference_range_spec.rb
306
316
  - spec/models/patient_demographics_spec.rb
307
317
  - spec/models/dosage_spec.rb
@@ -325,6 +335,7 @@ test_files:
325
335
  - spec/models/v2_medication_spec.rb
326
336
  - spec/models/measurement_spec.rb
327
337
  - spec/models/medication_spec.rb
338
+ - spec/models/order_patient_contacts_spec.rb
328
339
  - spec/models/visit_plan_spec.rb
329
340
  - spec/models/phone_number_spec.rb
330
341
  - spec/models/order_order_specimen_spec.rb
@@ -335,6 +346,7 @@ test_files:
335
346
  - spec/models/meta_message_spec.rb
336
347
  - spec/models/demographics_spec.rb
337
348
  - spec/models/order_with_event_errors_spec.rb
349
+ - spec/models/order_patient_spec.rb
338
350
  - spec/models/order_order_spec.rb
339
351
  - spec/models/order_spec.rb
340
352
  - spec/models/visit_insured_spec.rb
@@ -1,180 +0,0 @@
1
- .gitignore
2
- .openapi-generator-ignore
3
- .rspec
4
- .rubocop.yml
5
- .travis.yml
6
- Gemfile
7
- README.md
8
- Rakefile
9
- docs/Accession.md
10
- docs/AccessionOrder.md
11
- docs/Address.md
12
- docs/CodedValue.md
13
- docs/DefaultApi.md
14
- docs/Demographics.md
15
- docs/Device.md
16
- docs/Dosage.md
17
- docs/Error.md
18
- docs/Event.md
19
- docs/Events.md
20
- docs/Identifier.md
21
- docs/Ids.md
22
- docs/Location.md
23
- docs/Measurement.md
24
- docs/Medication.md
25
- docs/MedicationAdministration.md
26
- docs/Meta.md
27
- docs/MetaDestinations.md
28
- docs/MetaMessage.md
29
- docs/MetaSource.md
30
- docs/MetaTransmission.md
31
- docs/Name.md
32
- docs/Order.md
33
- docs/OrderIds.md
34
- docs/OrderOrder.md
35
- docs/OrderOrderClinicalInfo.md
36
- docs/OrderOrderDiagnoses.md
37
- docs/OrderOrderOrderingFacility.md
38
- docs/OrderWithEventErrors.md
39
- docs/Orders.md
40
- docs/OrdersOrders.md
41
- docs/Patient.md
42
- docs/PatientContacts.md
43
- docs/PhoneNumber.md
44
- docs/Provider.md
45
- docs/Result.md
46
- docs/ResultIds.md
47
- docs/ResultReferenceRange.md
48
- docs/ResultReport.md
49
- docs/Results.md
50
- docs/Specimen.md
51
- docs/Subject.md
52
- docs/V2Device.md
53
- docs/V2Dosage.md
54
- docs/V2Medication.md
55
- docs/V2MedicationAdministration.md
56
- docs/Visit.md
57
- docs/VisitCompany.md
58
- docs/VisitGuarantor.md
59
- docs/VisitGuarantorEmployer.md
60
- docs/VisitInsurances.md
61
- docs/VisitInsured.md
62
- docs/VisitPlan.md
63
- git_push.sh
64
- lib/primary_connect_client.rb
65
- lib/primary_connect_client/api/default_api.rb
66
- lib/primary_connect_client/api_client.rb
67
- lib/primary_connect_client/api_error.rb
68
- lib/primary_connect_client/configuration.rb
69
- lib/primary_connect_client/models/accession.rb
70
- lib/primary_connect_client/models/accession_order.rb
71
- lib/primary_connect_client/models/address.rb
72
- lib/primary_connect_client/models/coded_value.rb
73
- lib/primary_connect_client/models/demographics.rb
74
- lib/primary_connect_client/models/device.rb
75
- lib/primary_connect_client/models/dosage.rb
76
- lib/primary_connect_client/models/error.rb
77
- lib/primary_connect_client/models/event.rb
78
- lib/primary_connect_client/models/events.rb
79
- lib/primary_connect_client/models/identifier.rb
80
- lib/primary_connect_client/models/ids.rb
81
- lib/primary_connect_client/models/location.rb
82
- lib/primary_connect_client/models/measurement.rb
83
- lib/primary_connect_client/models/medication.rb
84
- lib/primary_connect_client/models/medication_administration.rb
85
- lib/primary_connect_client/models/meta.rb
86
- lib/primary_connect_client/models/meta_destinations.rb
87
- lib/primary_connect_client/models/meta_message.rb
88
- lib/primary_connect_client/models/meta_source.rb
89
- lib/primary_connect_client/models/meta_transmission.rb
90
- lib/primary_connect_client/models/name.rb
91
- lib/primary_connect_client/models/order.rb
92
- lib/primary_connect_client/models/order_ids.rb
93
- lib/primary_connect_client/models/order_order.rb
94
- lib/primary_connect_client/models/order_order_clinical_info.rb
95
- lib/primary_connect_client/models/order_order_diagnoses.rb
96
- lib/primary_connect_client/models/order_order_ordering_facility.rb
97
- lib/primary_connect_client/models/order_with_event_errors.rb
98
- lib/primary_connect_client/models/orders.rb
99
- lib/primary_connect_client/models/orders_orders.rb
100
- lib/primary_connect_client/models/patient.rb
101
- lib/primary_connect_client/models/patient_contacts.rb
102
- lib/primary_connect_client/models/phone_number.rb
103
- lib/primary_connect_client/models/provider.rb
104
- lib/primary_connect_client/models/result.rb
105
- lib/primary_connect_client/models/result_ids.rb
106
- lib/primary_connect_client/models/result_reference_range.rb
107
- lib/primary_connect_client/models/result_report.rb
108
- lib/primary_connect_client/models/results.rb
109
- lib/primary_connect_client/models/specimen.rb
110
- lib/primary_connect_client/models/subject.rb
111
- lib/primary_connect_client/models/v2_device.rb
112
- lib/primary_connect_client/models/v2_dosage.rb
113
- lib/primary_connect_client/models/v2_medication.rb
114
- lib/primary_connect_client/models/v2_medication_administration.rb
115
- lib/primary_connect_client/models/visit.rb
116
- lib/primary_connect_client/models/visit_company.rb
117
- lib/primary_connect_client/models/visit_guarantor.rb
118
- lib/primary_connect_client/models/visit_guarantor_employer.rb
119
- lib/primary_connect_client/models/visit_insurances.rb
120
- lib/primary_connect_client/models/visit_insured.rb
121
- lib/primary_connect_client/models/visit_plan.rb
122
- lib/primary_connect_client/version.rb
123
- primary_connect_client.gemspec
124
- spec/api/default_api_spec.rb
125
- spec/api_client_spec.rb
126
- spec/configuration_spec.rb
127
- spec/models/accession_order_spec.rb
128
- spec/models/accession_spec.rb
129
- spec/models/address_spec.rb
130
- spec/models/coded_value_spec.rb
131
- spec/models/demographics_spec.rb
132
- spec/models/device_spec.rb
133
- spec/models/dosage_spec.rb
134
- spec/models/error_spec.rb
135
- spec/models/event_spec.rb
136
- spec/models/events_spec.rb
137
- spec/models/identifier_spec.rb
138
- spec/models/ids_spec.rb
139
- spec/models/location_spec.rb
140
- spec/models/measurement_spec.rb
141
- spec/models/medication_administration_spec.rb
142
- spec/models/medication_spec.rb
143
- spec/models/meta_destinations_spec.rb
144
- spec/models/meta_message_spec.rb
145
- spec/models/meta_source_spec.rb
146
- spec/models/meta_spec.rb
147
- spec/models/meta_transmission_spec.rb
148
- spec/models/name_spec.rb
149
- spec/models/order_ids_spec.rb
150
- spec/models/order_order_clinical_info_spec.rb
151
- spec/models/order_order_diagnoses_spec.rb
152
- spec/models/order_order_ordering_facility_spec.rb
153
- spec/models/order_order_spec.rb
154
- spec/models/order_spec.rb
155
- spec/models/order_with_event_errors_spec.rb
156
- spec/models/orders_orders_spec.rb
157
- spec/models/orders_spec.rb
158
- spec/models/patient_contacts_spec.rb
159
- spec/models/patient_spec.rb
160
- spec/models/phone_number_spec.rb
161
- spec/models/provider_spec.rb
162
- spec/models/result_ids_spec.rb
163
- spec/models/result_reference_range_spec.rb
164
- spec/models/result_report_spec.rb
165
- spec/models/result_spec.rb
166
- spec/models/results_spec.rb
167
- spec/models/specimen_spec.rb
168
- spec/models/subject_spec.rb
169
- spec/models/v2_device_spec.rb
170
- spec/models/v2_dosage_spec.rb
171
- spec/models/v2_medication_administration_spec.rb
172
- spec/models/v2_medication_spec.rb
173
- spec/models/visit_company_spec.rb
174
- spec/models/visit_guarantor_employer_spec.rb
175
- spec/models/visit_guarantor_spec.rb
176
- spec/models/visit_insurances_spec.rb
177
- spec/models/visit_insured_spec.rb
178
- spec/models/visit_plan_spec.rb
179
- spec/models/visit_spec.rb
180
- spec/spec_helper.rb
@@ -1 +0,0 @@
1
- 5.3.0
@@ -1,23 +0,0 @@
1
- # OpenAPI Generator Ignore
2
- # Generated by openapi-generator https://github.com/openapitools/openapi-generator
3
-
4
- # Use this file to prevent files from being overwritten by the generator.
5
- # The patterns follow closely to .gitignore or .dockerignore.
6
-
7
- # As an example, the C# client generator defines ApiClient.cs.
8
- # You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9
- #ApiClient.cs
10
-
11
- # You can match any string of characters against a directory, file or extension with a single asterisk (*):
12
- #foo/*/qux
13
- # The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14
-
15
- # You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16
- #foo/**/qux
17
- # This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18
-
19
- # You can also negate patterns with an exclamation (!).
20
- # For example, you can ignore all files in a docs folder with the file extension .md:
21
- #docs/*.md
22
- # Then explicitly reverse the ignore rule for a single file:
23
- #!docs/README.md
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --color
2
- --require spec_helper