primary_connect_proto 0.6.0 → 0.7.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: a99e0e5901421256f11ec2abef25f9ca93332207746a52cd1e7554876e016940
4
- data.tar.gz: b37f870627065ca0e81a2dcd13e8885c56f0256c1b635fb03c78eb43c0197c76
3
+ metadata.gz: 84b6c17757a04a0c85141e80f5198e418d22750fb67ea20e7dcc396717d57837
4
+ data.tar.gz: d7ea410edebecd2613f2db10f31178e25122ee0d5cbb189914d51fdb4bbad614
5
5
  SHA512:
6
- metadata.gz: 6e377e734a68fa42cb9d1a360f7390b57e700e510d8787fd1119d43a8a2a3124e2b1031a74a03dbefdcade75368deb69695f9db60bb4ce6c78d429c050323fe4
7
- data.tar.gz: e9ca985e432384417cc1efaad8ec6d77271950f0ef30816032ca84ea32d46c84e82e3b2dc1b9a0aefd7e3bf8c66130203023afe8b4bc016ebd56b4563675f731
6
+ metadata.gz: 2e503879494f7f052362920562cd597e152927aa55a21c901768f6add5813d1fd00ce247fe40d85a9fa38ffd92240cfad5333e1b9151405520c3cd662d107176
7
+ data.tar.gz: c087fae16f8cf92877a48398f515f01093339172312568b4729fa434258b3cb3cd4adfc428314f7cabb478b8ac56ca770ef97515ddc68e06258b83654abccfb6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.7.0
4
+
5
+ - Added `echo` to `Meta`
6
+ - Updated `Meta.destination.config`
7
+
3
8
  ## 0.6.0
4
9
 
5
10
  - Added `external_ids` to `Order`
@@ -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.6.0"
8
+ s.version = "0.7.0"
9
9
  s.authors = ["Primary.Health"]
10
10
  s.email = ["sam@primary.health"]
11
11
 
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
+ require 'google/protobuf/any_pb'
6
7
  require 'google/protobuf/timestamp_pb'
7
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
8
9
  add_file("meta.proto", :syntax => :proto3) do
@@ -15,6 +16,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
15
16
  optional :message, :message, 6, "primary.connect.Meta.Message"
16
17
  optional :transmission, :message, 7, "primary.connect.Meta.Transmission"
17
18
  optional :facility_code, :string, 8
19
+ map :echo, :string, :message, 9, "google.protobuf.Any"
18
20
  end
19
21
  add_message "primary.connect.Meta.Source" do
20
22
  optional :id, :string, 1
@@ -30,7 +32,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
30
32
  add_message "primary.connect.Meta.Destination" do
31
33
  optional :id, :string, 1
32
34
  optional :name, :string, 2
33
- map :config, :string, :string, 3
35
+ map :config, :string, :message, 3, "google.protobuf.Any"
34
36
  end
35
37
  add_enum "primary.connect.Meta.EventType" do
36
38
  value :EVENT_TYPE_NEW, 0
@@ -2,6 +2,7 @@
2
2
  syntax = "proto3";
3
3
  package primary.connect;
4
4
 
5
+ import "google/protobuf/any.proto";
5
6
  import "google/protobuf/timestamp.proto";
6
7
 
7
8
  message Meta {
@@ -30,7 +31,7 @@ message Meta {
30
31
  message Destination {
31
32
  string id = 1;
32
33
  string name = 2;
33
- map<string, string> config = 3;
34
+ map<string, google.protobuf.Any> config = 3;
34
35
  }
35
36
 
36
37
  EventType event_type = 1;
@@ -41,4 +42,5 @@ message Meta {
41
42
  Message message = 6;
42
43
  Transmission transmission = 7;
43
44
  string facility_code = 8;
45
+ map<string, google.protobuf.Any> echo = 9;
44
46
  }
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.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Primary.Health
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-04 00:00:00.000000000 Z
11
+ date: 2022-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf