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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/connect_proto/build/measurement_pb.rb +30 -0
- data/lib/connect_proto/src/measurement.proto +20 -0
- data/lib/connect_proto/version.rb +1 -1
- data/lib/primary_connect_proto.rb +1 -0
- metadata +14 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7dd478b30c53f0da5848da7b444e46a7f5061badd2a5c5ec615a8f3ddff59ddb
|
4
|
+
data.tar.gz: 2a65a6d17e12e91c35d133bdfd65df4f06a95513ea24cbfdc884c27fb569f75d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebddc71b1538b2f4cb84da8fea2934c1026a1c1e3aef917eea5b4be08cb22d8b3a4bc808d27489d162d04e6b140c35acb43aeb41e35c1b320af956fd55542958
|
7
|
+
data.tar.gz: b0aa4c46909fcb478d01f0fe5160a8f805e334eef7d7b57a4d7b0847a36a36253a48820d53bbd3ebc5fc3da0dcfd6028d7aed4001c82966d499577be7a99c886
|
data/CHANGELOG.md
CHANGED
@@ -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
|
+
}
|
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.
|
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-
|
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.
|
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: []
|