primary_connect_proto 0.7.0 → 0.7.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
  SHA256:
3
- metadata.gz: 84b6c17757a04a0c85141e80f5198e418d22750fb67ea20e7dcc396717d57837
4
- data.tar.gz: d7ea410edebecd2613f2db10f31178e25122ee0d5cbb189914d51fdb4bbad614
3
+ metadata.gz: 259d79559e0cd96cf6d33c570ee247f3959676fb93d9b87726f28f05f3b41e17
4
+ data.tar.gz: 20bbb4772c549652494a244c9dae4ea0489c57abac984ac1e2c07ba0820aef7d
5
5
  SHA512:
6
- metadata.gz: 2e503879494f7f052362920562cd597e152927aa55a21c901768f6add5813d1fd00ce247fe40d85a9fa38ffd92240cfad5333e1b9151405520c3cd662d107176
7
- data.tar.gz: c087fae16f8cf92877a48398f515f01093339172312568b4729fa434258b3cb3cd4adfc428314f7cabb478b8ac56ca770ef97515ddc68e06258b83654abccfb6
6
+ metadata.gz: d105b3e1c1d730debb1c2421f4bcb1f0dc8b4d8bd5e3dccc20b422667116b3b10fb78c18ff412a68ff8057868dddb5ddf41b50174ff936d33fb2cc76a3806c4f
7
+ data.tar.gz: f1e3cf30c3c54a3a13309147acb0e829913e7a913dab6bd3af5097ea4393591259d8fb53ad8145703303e9a20135f185798732177ccae2d7442bb5101811b28b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.7.1
4
+
5
+ - Use `Value` instead of `Any`
6
+
3
7
  ## 0.7.0
4
8
 
5
9
  - Added `echo` to `Meta`
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "primary_connect_proto"
8
- s.version = "0.7.0"
8
+ s.version = "0.7.1"
9
9
  s.authors = ["Primary.Health"]
10
10
  s.email = ["sam@primary.health"]
11
11
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
- require 'google/protobuf/any_pb'
6
+ require 'google/protobuf/struct_pb'
7
7
  require 'google/protobuf/timestamp_pb'
8
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
9
  add_file("meta.proto", :syntax => :proto3) do
@@ -16,7 +16,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
16
16
  optional :message, :message, 6, "primary.connect.Meta.Message"
17
17
  optional :transmission, :message, 7, "primary.connect.Meta.Transmission"
18
18
  optional :facility_code, :string, 8
19
- map :echo, :string, :message, 9, "google.protobuf.Any"
19
+ map :echo, :string, :message, 9, "google.protobuf.Value"
20
20
  end
21
21
  add_message "primary.connect.Meta.Source" do
22
22
  optional :id, :string, 1
@@ -32,7 +32,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
32
32
  add_message "primary.connect.Meta.Destination" do
33
33
  optional :id, :string, 1
34
34
  optional :name, :string, 2
35
- map :config, :string, :message, 3, "google.protobuf.Any"
35
+ map :config, :string, :message, 3, "google.protobuf.Value"
36
36
  end
37
37
  add_enum "primary.connect.Meta.EventType" do
38
38
  value :EVENT_TYPE_NEW, 0
@@ -2,7 +2,7 @@
2
2
  syntax = "proto3";
3
3
  package primary.connect;
4
4
 
5
- import "google/protobuf/any.proto";
5
+ import "google/protobuf/struct.proto";
6
6
  import "google/protobuf/timestamp.proto";
7
7
 
8
8
  message Meta {
@@ -31,7 +31,7 @@ message Meta {
31
31
  message Destination {
32
32
  string id = 1;
33
33
  string name = 2;
34
- map<string, google.protobuf.Any> config = 3;
34
+ map<string, google.protobuf.Value> config = 3;
35
35
  }
36
36
 
37
37
  EventType event_type = 1;
@@ -42,5 +42,5 @@ message Meta {
42
42
  Message message = 6;
43
43
  Transmission transmission = 7;
44
44
  string facility_code = 8;
45
- map<string, google.protobuf.Any> echo = 9;
45
+ map<string, google.protobuf.Value> echo = 9;
46
46
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: primary_connect_proto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Primary.Health