primary_connect_proto 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/connect_proto.gemspec +1 -1
- data/lib/connect_proto/build/meta_pb.rb +3 -3
- data/lib/connect_proto/src/meta.proto +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 259d79559e0cd96cf6d33c570ee247f3959676fb93d9b87726f28f05f3b41e17
|
4
|
+
data.tar.gz: 20bbb4772c549652494a244c9dae4ea0489c57abac984ac1e2c07ba0820aef7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d105b3e1c1d730debb1c2421f4bcb1f0dc8b4d8bd5e3dccc20b422667116b3b10fb78c18ff412a68ff8057868dddb5ddf41b50174ff936d33fb2cc76a3806c4f
|
7
|
+
data.tar.gz: f1e3cf30c3c54a3a13309147acb0e829913e7a913dab6bd3af5097ea4393591259d8fb53ad8145703303e9a20135f185798732177ccae2d7442bb5101811b28b
|
data/CHANGELOG.md
CHANGED
data/connect_proto.gemspec
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
require 'google/protobuf'
|
5
5
|
|
6
|
-
require 'google/protobuf/
|
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.
|
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.
|
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/
|
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.
|
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.
|
45
|
+
map<string, google.protobuf.Value> echo = 9;
|
46
46
|
}
|