primary_connect_proto 0.15.0 → 0.16.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: d496766e682a15a163f5aad1707f49ada2662d7fdc69307cb03c1b57977c41ad
4
- data.tar.gz: 4ecda5c168ebf23f22b343adac5d494a95f4e32120d9cb79df398435e4f1f8c5
3
+ metadata.gz: 7dd478b30c53f0da5848da7b444e46a7f5061badd2a5c5ec615a8f3ddff59ddb
4
+ data.tar.gz: 2a65a6d17e12e91c35d133bdfd65df4f06a95513ea24cbfdc884c27fb569f75d
5
5
  SHA512:
6
- metadata.gz: b69234d07261eaf500e0f41ca9ac4e8966aacb4afae7c8841d98ad0cad02d28a3e2dad311a611f8d104dbda47436947c9ce393a9b702352d847c4c387e4e92c0
7
- data.tar.gz: 814ed20676bfa1267c19ce8e7aaf82bc42c582ac312bfa0a80c79d86857de8111dc8ce1cfe2086832b8c29162681795a82c3256f7bca3a2cf10ad34251a26d30
6
+ metadata.gz: ebddc71b1538b2f4cb84da8fea2934c1026a1c1e3aef917eea5b4be08cb22d8b3a4bc808d27489d162d04e6b140c35acb43aeb41e35c1b320af956fd55542958
7
+ data.tar.gz: b0aa4c46909fcb478d01f0fe5160a8f805e334eef7d7b57a4d7b0847a36a36253a48820d53bbd3ebc5fc3da0dcfd6028d7aed4001c82966d499577be7a99c886
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.16.0
4
+
5
+ - Added `Measurement`
6
+
3
7
  ## 0.15.0
4
8
 
5
9
  - Added `repeated Identifier` to `Device`
@@ -0,0 +1,30 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: measurement.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'device_pb'
7
+ require 'meta_pb'
8
+ require 'result_pb'
9
+
10
+ Google::Protobuf::DescriptorPool.generated_pool.build do
11
+ add_file("measurement.proto", :syntax => :proto3) do
12
+ add_message "primary.connect.Measurement" do
13
+ optional :meta, :message, 1, "primary.connect.Meta"
14
+ optional :subject, :message, 2, "primary.connect.Measurement.Subject"
15
+ repeated :metrics, :message, 3, "primary.connect.Result"
16
+ end
17
+ add_message "primary.connect.Measurement.Subject" do
18
+ oneof :subject do
19
+ optional :device, :message, 1, "primary.connect.Device"
20
+ end
21
+ end
22
+ end
23
+ end
24
+
25
+ module Primary
26
+ module Connect
27
+ Measurement = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("primary.connect.Measurement").msgclass
28
+ Measurement::Subject = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("primary.connect.Measurement.Subject").msgclass
29
+ end
30
+ end
@@ -0,0 +1,20 @@
1
+ syntax = "proto3";
2
+ package primary.connect;
3
+ option go_package = "primary.connect";
4
+
5
+ import "device.proto";
6
+ import "meta.proto";
7
+ import "result.proto";
8
+
9
+ message Measurement {
10
+
11
+ message Subject {
12
+ oneof subject {
13
+ Device device = 1;
14
+ };
15
+ }
16
+
17
+ Meta meta = 1;
18
+ Subject subject = 2;
19
+ repeated Result metrics = 3;
20
+ }
@@ -1,3 +1,3 @@
1
1
  module ConnectProto
2
- VERSION = '0.15.0'
2
+ VERSION = '0.16.0'
3
3
  end
@@ -7,6 +7,7 @@ require 'device_pb'
7
7
  require 'identifier_pb'
8
8
  require 'location_pb'
9
9
  require 'meta_pb'
10
+ require 'measurement_pb'
10
11
  require 'name_pb'
11
12
  require 'order_pb'
12
13
  require 'patient_pb'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: primary_connect_proto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Primary.Health
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -56,22 +56,22 @@ dependencies:
56
56
  name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: 3.6.0
62
59
  - - "~>"
63
60
  - !ruby/object:Gem::Version
64
61
  version: '3.6'
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: 3.6.0
65
65
  type: :development
66
66
  prerelease: false
67
67
  version_requirements: !ruby/object:Gem::Requirement
68
68
  requirements:
69
- - - ">="
70
- - !ruby/object:Gem::Version
71
- version: 3.6.0
72
69
  - - "~>"
73
70
  - !ruby/object:Gem::Version
74
71
  version: '3.6'
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 3.6.0
75
75
  description: Protobufs for Diagnostic Ordering and Resulting
76
76
  email:
77
77
  - sam@primary.health
@@ -91,6 +91,7 @@ files:
91
91
  - lib/connect_proto/build/device_pb.rb
92
92
  - lib/connect_proto/build/identifier_pb.rb
93
93
  - lib/connect_proto/build/location_pb.rb
94
+ - lib/connect_proto/build/measurement_pb.rb
94
95
  - lib/connect_proto/build/medication_administration_pb.rb
95
96
  - lib/connect_proto/build/meta_pb.rb
96
97
  - lib/connect_proto/build/name_pb.rb
@@ -109,6 +110,7 @@ files:
109
110
  - lib/connect_proto/src/device.proto
110
111
  - lib/connect_proto/src/identifier.proto
111
112
  - lib/connect_proto/src/location.proto
113
+ - lib/connect_proto/src/measurement.proto
112
114
  - lib/connect_proto/src/medication_administration.proto
113
115
  - lib/connect_proto/src/meta.proto
114
116
  - lib/connect_proto/src/name.proto
@@ -139,7 +141,7 @@ homepage: https://github.com/PrimaryDotHealth/connect-proto
139
141
  licenses:
140
142
  - Unlicense
141
143
  metadata: {}
142
- post_install_message:
144
+ post_install_message:
143
145
  rdoc_options: []
144
146
  require_paths:
145
147
  - lib
@@ -156,8 +158,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
156
158
  - !ruby/object:Gem::Version
157
159
  version: '0'
158
160
  requirements: []
159
- rubygems_version: 3.0.3.1
160
- signing_key:
161
+ rubygems_version: 3.2.15
162
+ signing_key:
161
163
  specification_version: 4
162
164
  summary: Primary Connect Protobuf
163
165
  test_files: []