primary_connect_proto 0.21.0 → 0.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c883fc77ef52dc137941c1e3523a452ce137d3a11b71d8ba0ccb6850aa8accc
4
- data.tar.gz: a88fad2f06a21fe98f89d8788d3c253e1e73bff428f5ad48c96f74c45ad0a887
3
+ metadata.gz: fc3e2f239d0af9029f897cf16417f877af8f3767d0ffc8bda369582d4342baed
4
+ data.tar.gz: 940221f963643d9fef719f25f4139e547a23ffa3df3a4859c215246a4710b4c2
5
5
  SHA512:
6
- metadata.gz: 1b65e91b574135799e0841a95ed78971ca7b3a517e5113d56a658fa35c7c7a0a15be529d1456920c80f00cc3322db4dda8de30932ea0548224281401895dd12b
7
- data.tar.gz: 6a1fa1cde3e5c5fbaeca8a129510a2f3fa509e5307648cf67daab8223b28249b717a2ac02ac760cdd76439f967e67f5ca464de2a442b997b5b866b8a38145dfc
6
+ metadata.gz: 7ab6c8ecbc9597ee582f1dbcb2e7188763a4dbf730da5bc55eaa156032ad59425963fec211e020c1cb9aee2593264f7d2bccc788846349e492bc2fbd83f147a0
7
+ data.tar.gz: 1f3a6cd88ba1a0b972888290e90a87cca6b5394f19de6a807d7bf6eb366f159744623b0a41dffdeb31ee744fc1a075db36f4070eed24283d3dba2598b6f947da
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.22.0
4
+
5
+ - Added `Meta.Provenances[]`
6
+
3
7
  ## 0.21.0
4
8
 
5
9
  - Added `procedure` to `Result`
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- primary_connect_proto (0.19.0)
4
+ primary_connect_proto (0.22.0)
5
5
  google-protobuf (~> 3.22.0)
6
6
 
7
7
  GEM
@@ -11,7 +11,7 @@ GEM
11
11
  byebug (11.1.3)
12
12
  coderay (1.1.3)
13
13
  diff-lcs (1.4.4)
14
- google-protobuf (3.22.0)
14
+ google-protobuf (3.22.5)
15
15
  jaro_winkler (1.5.4)
16
16
  method_source (1.0.0)
17
17
  parallel (1.21.0)
@@ -18,6 +18,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
18
18
  optional :transmission, :message, 7, "primary.connect.Meta.Transmission"
19
19
  optional :facility_code, :string, 8
20
20
  map :echo, :string, :message, 9, "google.protobuf.Value"
21
+ repeated :provenances, :message, 10, "primary.connect.Meta.Provenance"
21
22
  end
22
23
  add_message "primary.connect.Meta.Source" do
23
24
  optional :id, :string, 1
@@ -35,6 +36,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
35
36
  optional :name, :string, 2
36
37
  map :config, :string, :message, 3, "google.protobuf.Value"
37
38
  end
39
+ add_message "primary.connect.Meta.Provenance" do
40
+ optional :destination, :message, 1, "primary.connect.Meta.Destination"
41
+ optional :placer_id, :string, 2
42
+ optional :rerouted_at, :message, 3, "google.protobuf.Timestamp"
43
+ end
38
44
  add_enum "primary.connect.Meta.EventType" do
39
45
  value :EVENT_TYPE_UNKNOWN, 0
40
46
  value :EVENT_TYPE_NEW_UNSOLICITED, 1
@@ -53,6 +59,7 @@ module Primary
53
59
  Meta::Message = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("primary.connect.Meta.Message").msgclass
54
60
  Meta::Transmission = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("primary.connect.Meta.Transmission").msgclass
55
61
  Meta::Destination = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("primary.connect.Meta.Destination").msgclass
62
+ Meta::Provenance = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("primary.connect.Meta.Provenance").msgclass
56
63
  Meta::EventType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("primary.connect.Meta.EventType").enummodule
57
64
  end
58
65
  end
@@ -35,6 +35,12 @@ message Meta {
35
35
  map<string, google.protobuf.Value> config = 3;
36
36
  }
37
37
 
38
+ message Provenance {
39
+ Destination destination = 1;
40
+ string placer_id = 2; // ID Assigned by the destination of provenance
41
+ google.protobuf.Timestamp rerouted_at = 3;
42
+ }
43
+
38
44
  EventType event_type = 1;
39
45
  google.protobuf.Timestamp event_date_and_time = 2;
40
46
  bool test = 3;
@@ -44,4 +50,5 @@ message Meta {
44
50
  Transmission transmission = 7;
45
51
  string facility_code = 8;
46
52
  map<string, google.protobuf.Value> echo = 9;
53
+ repeated Provenance provenances = 10;
47
54
  }
@@ -1,3 +1,3 @@
1
1
  module ConnectProto
2
- VERSION = '0.21.0'
2
+ VERSION = '0.22.0'
3
3
  end
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.21.0
4
+ version: 0.22.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: 2023-04-17 00:00:00.000000000 Z
11
+ date: 2023-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf