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 +4 -4
 - data/CHANGELOG.md +5 -0
 - data/connect_proto.gemspec +1 -1
 - data/lib/connect_proto/build/meta_pb.rb +3 -1
 - data/lib/connect_proto/src/meta.proto +3 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 84b6c17757a04a0c85141e80f5198e418d22750fb67ea20e7dcc396717d57837
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: d7ea410edebecd2613f2db10f31178e25122ee0d5cbb189914d51fdb4bbad614
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 2e503879494f7f052362920562cd597e152927aa55a21c901768f6add5813d1fd00ce247fe40d85a9fa38ffd92240cfad5333e1b9151405520c3cd662d107176
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: c087fae16f8cf92877a48398f515f01093339172312568b4729fa434258b3cb3cd4adfc428314f7cabb478b8ac56ca770ef97515ddc68e06258b83654abccfb6
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
    
        data/connect_proto.gemspec
    CHANGED
    
    
| 
         @@ -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, : 
     | 
| 
      
 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,  
     | 
| 
      
 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. 
     | 
| 
      
 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- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2022-03-15 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: google-protobuf
         
     |