onc_certification_g10_test_kit 7.2.9 → 7.3.0
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: f3d79ece7ca4798298b867430f1cca181e3aaadfffba9947824ec53bf57966be
|
|
4
|
+
data.tar.gz: 135ffce468014adb2113adaa37b085d91b54901d3550db9ad49d6a5717044225
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8a76ca11c3fc5e6130de207cb72b21930fa08bbbd876d93497576bba47d3933ae2897f6a0447f954ec3f7f1515865c6f49caa48d47904705e2deb5ae98c9d9b
|
|
7
|
+
data.tar.gz: 68c82a640086c522355d05cf539fb76831e2d00fe7ced8d0219905c058b32bf31c82379cda81a9af9fc8f08933c4d5cf074926be16dda7d7f00fba3d9621c4c2
|
|
@@ -256,14 +256,6 @@ module ONCCertificationG10TestKit
|
|
|
256
256
|
suite_option :us_core_version,
|
|
257
257
|
title: 'US Core Version',
|
|
258
258
|
list_options: [
|
|
259
|
-
{
|
|
260
|
-
label: 'US Core 3.1.1 / USCDI v1',
|
|
261
|
-
value: G10Options::US_CORE_3
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
label: 'US Core 4.0.0 / USCDI v1',
|
|
265
|
-
value: G10Options::US_CORE_4
|
|
266
|
-
},
|
|
267
259
|
{
|
|
268
260
|
label: 'US Core 6.1.0 / USCDI v3',
|
|
269
261
|
value: G10Options::US_CORE_6
|
|
@@ -277,10 +269,6 @@ module ONCCertificationG10TestKit
|
|
|
277
269
|
suite_option :smart_app_launch_version,
|
|
278
270
|
title: 'SMART App Launch Version',
|
|
279
271
|
list_options: [
|
|
280
|
-
{
|
|
281
|
-
label: 'SMART App Launch 1.0.0',
|
|
282
|
-
value: G10Options::SMART_1
|
|
283
|
-
},
|
|
284
272
|
{
|
|
285
273
|
label: 'SMART App Launch 2.0.0',
|
|
286
274
|
value: G10Options::SMART_2
|
|
@@ -4,49 +4,62 @@ module ONCCertificationG10TestKit
|
|
|
4
4
|
%(
|
|
5
5
|
launch/patient openid fhirUser offline_access patient/Medication.read
|
|
6
6
|
patient/AllergyIntolerance.read patient/CarePlan.read
|
|
7
|
-
patient/CareTeam.read patient/Condition.read patient/
|
|
8
|
-
patient/
|
|
9
|
-
patient/
|
|
10
|
-
patient/
|
|
7
|
+
patient/CareTeam.read patient/Condition.read patient/Coverage.read
|
|
8
|
+
patient/Device.read patient/DiagnosticReport.read
|
|
9
|
+
patient/DocumentReference.read patient/Encounter.read patient/Goal.read
|
|
10
|
+
patient/Immunization.read patient/Location.read
|
|
11
|
+
patient/MedicationDispense.read patient/MedicationRequest.read
|
|
11
12
|
patient/Observation.read patient/Organization.read patient/Patient.read
|
|
12
|
-
patient/Practitioner.read patient/
|
|
13
|
-
patient/
|
|
13
|
+
patient/Practitioner.read patient/PractitionerRole.read
|
|
14
|
+
patient/Procedure.read patient/Provenance.read
|
|
15
|
+
patient/QuestionnaireResponse.read patient/RelatedPerson.read
|
|
16
|
+
patient/ServiceRequest.read patient/Specimen.read
|
|
14
17
|
).gsub(/\s{2,}/, ' ').strip.freeze
|
|
15
18
|
|
|
16
19
|
STANDALONE_SMART_2_SCOPES =
|
|
17
20
|
%(
|
|
18
21
|
launch/patient openid fhirUser offline_access patient/Medication.rs
|
|
19
22
|
patient/AllergyIntolerance.rs patient/CarePlan.rs patient/CareTeam.rs
|
|
20
|
-
patient/Condition.rs patient/
|
|
21
|
-
patient/
|
|
22
|
-
patient/
|
|
23
|
-
patient/
|
|
24
|
-
patient/
|
|
25
|
-
patient/
|
|
23
|
+
patient/Condition.rs patient/Coverage.rs patient/Device.rs
|
|
24
|
+
patient/DiagnosticReport.rs patient/DocumentReference.rs
|
|
25
|
+
patient/Encounter.rs patient/Goal.rs patient/Immunization.rs
|
|
26
|
+
patient/Location.rs patient/MedicationDispense.rs
|
|
27
|
+
patient/MedicationRequest.rs patient/Observation.rs
|
|
28
|
+
patient/Organization.rs patient/Patient.rs patient/Practitioner.rs
|
|
29
|
+
patient/PractitionerRole.rs patient/Procedure.rs
|
|
30
|
+
patient/Provenance.rs patient/QuestionnaireResponse.rs
|
|
31
|
+
patient/RelatedPerson.rs patient/ServiceRequest.rs
|
|
32
|
+
patient/Specimen.rs
|
|
26
33
|
).gsub(/\s{2,}/, ' ').strip.freeze
|
|
27
34
|
|
|
28
35
|
EHR_SMART_1_SCOPES =
|
|
29
36
|
%(
|
|
30
37
|
launch openid fhirUser offline_access user/Medication.read
|
|
31
38
|
user/AllergyIntolerance.read user/CarePlan.read user/CareTeam.read
|
|
32
|
-
user/Condition.read user/
|
|
33
|
-
user/
|
|
34
|
-
user/
|
|
35
|
-
user/
|
|
36
|
-
user/
|
|
37
|
-
user/
|
|
39
|
+
user/Condition.read user/Coverage.read user/Device.read
|
|
40
|
+
user/DiagnosticReport.read user/DocumentReference.read
|
|
41
|
+
user/Encounter.read user/Goal.read user/Immunization.read
|
|
42
|
+
user/Location.read user/MedicationDispense.read
|
|
43
|
+
user/MedicationRequest.read user/Observation.read
|
|
44
|
+
user/Organization.read user/Patient.read user/Practitioner.read
|
|
45
|
+
user/PractitionerRole.read user/Procedure.read user/Provenance.read
|
|
46
|
+
user/QuestionnaireResponse.read user/RelatedPerson.read
|
|
47
|
+
user/ServiceRequest.read user/Specimen.read
|
|
38
48
|
).gsub(/\s{2,}/, ' ').strip.freeze
|
|
39
49
|
|
|
40
50
|
EHR_SMART_2_SCOPES =
|
|
41
51
|
%(
|
|
42
52
|
launch openid fhirUser offline_access user/Medication.rs
|
|
43
53
|
user/AllergyIntolerance.rs user/CarePlan.rs user/CareTeam.rs
|
|
44
|
-
user/Condition.rs user/
|
|
45
|
-
user/
|
|
46
|
-
user/
|
|
47
|
-
user/
|
|
48
|
-
user/
|
|
49
|
-
user/
|
|
54
|
+
user/Condition.rs user/Coverage.rs user/Device.rs
|
|
55
|
+
user/DiagnosticReport.rs user/DocumentReference.rs
|
|
56
|
+
user/Encounter.rs user/Goal.rs user/Immunization.rs
|
|
57
|
+
user/Location.rs user/MedicationDispense.rs
|
|
58
|
+
user/MedicationRequest.rs user/Observation.rs
|
|
59
|
+
user/Organization.rs user/Patient.rs user/Practitioner.rs
|
|
60
|
+
user/PractitionerRole.rs user/Procedure.rs user/Provenance.rs
|
|
61
|
+
user/QuestionnaireResponse.rs user/RelatedPerson.rs
|
|
62
|
+
user/ServiceRequest.rs user/Specimen.rs
|
|
50
63
|
).gsub(/\s{2,}/, ' ').strip.freeze
|
|
51
64
|
end
|
|
52
65
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: onc_certification_g10_test_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.
|
|
4
|
+
version: 7.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen MacVicar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-03-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bloomer
|