primary_connect_proto 0.23.0 → 0.24.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: ba4cda9699668c4a063d478581ce5cb99723e575768c869e35414665db0a704f
4
- data.tar.gz: 7f6f4a4d9fac23061fee7d1bbca7b7b755394c19d6476a6fa62b9ab36f3e43c6
3
+ metadata.gz: b663c78995a410aebcbd5cd14f69999a03fdd5e60956785f2f12ca502db2aa08
4
+ data.tar.gz: 378dead758a8333c9f1ab6bf3621404a172a1ad75bcd56036abbad6e29daa91d
5
5
  SHA512:
6
- metadata.gz: 3a865115fef7476f4c1f56b86c224c02faa60714d6356966971fc9bf370b1597da71b07af2f008e4688839c964a1b91b5c835a82e8bcaaf8cb6edc450837cf2b
7
- data.tar.gz: 58e0ef52cd6472d4dcd11b5c9c0fb4630d270d72dcb9345589f4fe45846d5b78d54569a0e97c491668e29fafb0d5ffec2dd5b7e8eee631c4b2b7b3f232a33e43
6
+ metadata.gz: 368512dbcfa6260c1da4bfdfbeb7b65b354113e0658ab1f6fb3f68fdbd8a6f62cd122e563ee24e9443a789ba28f7b460dcc83d810cbaa053c12b5b76d3bf05b9
7
+ data.tar.gz: ba1254ff8045fa5ac78873ca79ca3007e9b1f604b41cfb3d437eed10b1edc21197bed0cfa6e071d62abb75375cda70a84d3127367fd12ac6e4602c17b0066507
data/CHANGELOG.md CHANGED
@@ -1,8 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.24.0
4
+
5
+ - Added `Result.suppress`
6
+
3
7
  ## 0.23.0
4
8
 
5
- -- Update `Demographics.RaceDetail` enum with more options
9
+ - Update `Demographics.RaceDetail` enum with more options
10
+
6
11
 
7
12
  ## 0.22.0
8
13
 
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ namespace :build do
6
6
  def compile(src_directory, path)
7
7
  print "Compiling #{path}"
8
8
  protoc_version = `protoc --version`.split(' ').last
9
- raise RuntimeError, "Please use protoc 24.4" unless protoc_version =~ /24\.\d+$/
9
+ raise RuntimeError, "Please use protoc 25.x" unless protoc_version =~ /25\.\d+$/
10
10
 
11
11
  `protoc --proto_path=#{src_directory} --ruby_out=lib/connect_proto/build #{path}`
12
12
  puts ' - done' if $?.exitstatus.zero?
@@ -11,7 +11,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
11
11
 
12
12
  begin
13
13
  pool.add_serialized_file(descriptor_data)
14
- rescue TypeError => e
14
+ rescue TypeError
15
15
  # Compatibility code: will be removed in the next major version.
16
16
  require 'google/protobuf/descriptor_pb'
17
17
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -11,7 +11,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
11
11
 
12
12
  begin
13
13
  pool.add_serialized_file(descriptor_data)
14
- rescue TypeError => e
14
+ rescue TypeError
15
15
  # Compatibility code: will be removed in the next major version.
16
16
  require 'google/protobuf/descriptor_pb'
17
17
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -16,7 +16,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
16
16
 
17
17
  begin
18
18
  pool.add_serialized_file(descriptor_data)
19
- rescue TypeError => e
19
+ rescue TypeError
20
20
  # Compatibility code: will be removed in the next major version.
21
21
  require 'google/protobuf/descriptor_pb'
22
22
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -16,7 +16,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
16
16
 
17
17
  begin
18
18
  pool.add_serialized_file(descriptor_data)
19
- rescue TypeError => e
19
+ rescue TypeError
20
20
  # Compatibility code: will be removed in the next major version.
21
21
  require 'google/protobuf/descriptor_pb'
22
22
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -11,7 +11,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
11
11
 
12
12
  begin
13
13
  pool.add_serialized_file(descriptor_data)
14
- rescue TypeError => e
14
+ rescue TypeError
15
15
  # Compatibility code: will be removed in the next major version.
16
16
  require 'google/protobuf/descriptor_pb'
17
17
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -11,7 +11,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
11
11
 
12
12
  begin
13
13
  pool.add_serialized_file(descriptor_data)
14
- rescue TypeError => e
14
+ rescue TypeError
15
15
  # Compatibility code: will be removed in the next major version.
16
16
  require 'google/protobuf/descriptor_pb'
17
17
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -15,7 +15,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
15
15
 
16
16
  begin
17
17
  pool.add_serialized_file(descriptor_data)
18
- rescue TypeError => e
18
+ rescue TypeError
19
19
  # Compatibility code: will be removed in the next major version.
20
20
  require 'google/protobuf/descriptor_pb'
21
21
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -16,7 +16,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
16
16
 
17
17
  begin
18
18
  pool.add_serialized_file(descriptor_data)
19
- rescue TypeError => e
19
+ rescue TypeError
20
20
  # Compatibility code: will be removed in the next major version.
21
21
  require 'google/protobuf/descriptor_pb'
22
22
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -14,7 +14,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
14
14
 
15
15
  begin
16
16
  pool.add_serialized_file(descriptor_data)
17
- rescue TypeError => e
17
+ rescue TypeError
18
18
  # Compatibility code: will be removed in the next major version.
19
19
  require 'google/protobuf/descriptor_pb'
20
20
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -11,7 +11,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
11
11
 
12
12
  begin
13
13
  pool.add_serialized_file(descriptor_data)
14
- rescue TypeError => e
14
+ rescue TypeError
15
15
  # Compatibility code: will be removed in the next major version.
16
16
  require 'google/protobuf/descriptor_pb'
17
17
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -25,7 +25,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
25
25
 
26
26
  begin
27
27
  pool.add_serialized_file(descriptor_data)
28
- rescue TypeError => e
28
+ rescue TypeError
29
29
  # Compatibility code: will be removed in the next major version.
30
30
  require 'google/protobuf/descriptor_pb'
31
31
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -18,7 +18,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
18
18
 
19
19
  begin
20
20
  pool.add_serialized_file(descriptor_data)
21
- rescue TypeError => e
21
+ rescue TypeError
22
22
  # Compatibility code: will be removed in the next major version.
23
23
  require 'google/protobuf/descriptor_pb'
24
24
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -11,7 +11,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
11
11
 
12
12
  begin
13
13
  pool.add_serialized_file(descriptor_data)
14
- rescue TypeError => e
14
+ rescue TypeError
15
15
  # Compatibility code: will be removed in the next major version.
16
16
  require 'google/protobuf/descriptor_pb'
17
17
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -17,7 +17,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
17
17
 
18
18
  begin
19
19
  pool.add_serialized_file(descriptor_data)
20
- rescue TypeError => e
20
+ rescue TypeError
21
21
  # Compatibility code: will be removed in the next major version.
22
22
  require 'google/protobuf/descriptor_pb'
23
23
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -11,7 +11,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
11
11
 
12
12
  begin
13
13
  pool.add_serialized_file(descriptor_data)
14
- rescue TypeError => e
14
+ rescue TypeError
15
15
  # Compatibility code: will be removed in the next major version.
16
16
  require 'google/protobuf/descriptor_pb'
17
17
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -13,13 +13,13 @@ require 'provider_pb'
13
13
  require 'specimen_pb'
14
14
 
15
15
 
16
- descriptor_data = "\n\x0cresult.proto\x12\x0fprimary.connect\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\raddress.proto\x1a\x11\x63oded_value.proto\x1a\x0c\x64\x65vice.proto\x1a\x10identifier.proto\x1a\x0eprovider.proto\x1a\x0especimen.proto\"\xc5\x0e\n\x06Result\x12)\n\x04\x63ode\x18\x01 \x01(\x0b\x32\x1b.primary.connect.CodedValue\x12\x18\n\x10related_group_id\x18\x02 \x03(\t\x12+\n\x08specimen\x18\x03 \x01(\x0b\x32\x19.primary.connect.Specimen\x12\r\n\x05value\x18\x04 \x01(\t\x12\x35\n\nvalue_type\x18\x05 \x01(\x0e\x32!.primary.connect.Result.ValueType\x12\x38\n\x14\x63ompletion_date_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\x06report\x18\x07 \x01(\x0b\x32\x1e.primary.connect.Result.Report\x12\r\n\x05units\x18\x08 \x01(\t\x12\r\n\x05notes\x18\t \x03(\t\x12;\n\rabnormal_flag\x18\n \x01(\x0e\x32$.primary.connect.Result.AbnormalFlag\x12.\n\x06status\x18\x0c \x01(\x0e\x32\x1e.primary.connect.Result.Status\x12>\n\x1bprimary_results_interpreter\x18\r \x01(\x0b\x32\x19.primary.connect.Provider\x12\x32\n\x08producer\x18\x0e \x01(\x0b\x32 .primary.connect.Result.Producer\x12,\n\tperformer\x18\x0f \x01(\x0b\x32\x19.primary.connect.Provider\x12\x36\n\x0freference_range\x18\x10 \x01(\x0b\x32\x1d.primary.connect.Result.Range\x12\x37\n\x12observation_method\x18\x11 \x01(\x0b\x32\x1b.primary.connect.CodedValue\x12\x19\n\x11producer_order_id\x18\x12 \x01(\t\x12\x32\n\rfinding_value\x18\x13 \x01(\x0b\x32\x1b.primary.connect.CodedValue\x12\x31\n\x10resulting_device\x18\x14 \x01(\x0b\x32\x17.primary.connect.Device\x12.\n\tprocedure\x18\x15 \x01(\x0b\x32\x1b.primary.connect.CodedValue\x1al\n\x08Producer\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x1b.primary.connect.Identifier\x12\x0c\n\x04name\x18\x02 \x01(\t\x12)\n\x07\x61\x64\x64ress\x18\x03 \x01(\x0b\x32\x18.primary.connect.Address\x1a\x30\n\x05Range\x12\x0b\n\x03low\x18\x01 \x01(\x05\x12\x0c\n\x04high\x18\x02 \x01(\x05\x12\x0c\n\x04text\x18\x03 \x01(\t\x1a\x36\n\x06Report\x12\x11\n\tfile_type\x18\x01 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\t\x12\x0b\n\x03url\x18\x03 \x01(\t\"\x97\x02\n\tValueType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0f\n\x0b\x43ODED_ENTRY\x10\x01\x12\x08\n\x04\x44\x41TE\x10\x02\x12\r\n\tDATE_TIME\x10\x03\x12\x15\n\x11\x45NCAPSULATED_DATA\x10\x04\x12\x12\n\x0e\x46ORMATTED_TEXT\x10\x05\x12\x06\n\x02ID\x10\x06\x12\x0f\n\x0bID_AND_NAME\x10\x07\x12\t\n\x05MONEY\x10\x08\x12\x08\n\x04NAME\x10\t\x12\x0b\n\x07NUMERIC\x10\n\x12\x10\n\x0cPHONE_NUMBER\x10\x0b\x12\t\n\x05PRICE\x10\x0c\x12\x15\n\x11REFERENCE_POINTER\x10\r\x12\n\n\x06STRING\x10\x0e\x12\x08\n\x04TIME\x10\x0f\x12\x16\n\x12STRUCTURED_NUMERIC\x10\x10\x12\x0b\n\x07\x41\x44\x44RESS\x10\x11\"\xc2\x02\n\x0c\x41\x62normalFlag\x12\x08\n\x04NONE\x10\x00\x12\x07\n\x03LOW\x10\x01\x12\x0c\n\x08VERY_LOW\x10\x02\x12\x08\n\x04HIGH\x10\x03\x12\r\n\tVERY_HIGH\x10\x04\x12\x0c\n\x08\x41\x42NORMAL\x10\x05\x12\x0f\n\x0bSUSCEPTIBLE\x10\x06\x12\r\n\tRESISTANT\x10\x07\x12\x10\n\x0cINTERMEDIATE\x10\x08\x12\x1a\n\x16MODERATELY_SUSCEPTIBLE\x10\t\x12\x14\n\x10VERY_SUSCEPTIBLE\x10\n\x12\x17\n\x13\x43RITICALLY_ABNORMAL\x10\x0b\x12\x12\n\x0e\x43RITICALLY_LOW\x10\x0c\x12\x13\n\x0f\x43RITICALLY_HIGH\x10\r\x12\x13\n\x0fNOT_SUSCEPTIBLE\x10\x0e\x12\x10\n\x0cINCONCLUSIVE\x10\x0f\x12\x11\n\rVERY_ABNORMAL\x10\x10\x12\n\n\x06NORMAL\x10\x11\"\x91\x01\n\x06Status\x12\x12\n\x0eNONE_SPECIFIED\x10\x00\x12\x0e\n\nINCOMPLETE\x10\x01\x12\r\n\tCORRECTED\x10\x02\x12\t\n\x05\x46INAL\x10\x03\x12\x0f\n\x0bUNAVAILABLE\x10\x04\x12\x0f\n\x0bPRELIMINARY\x10\x05\x12\x0c\n\x08\x43\x41NCELED\x10\x06\x12\x0b\n\x07\x44\x45LETED\x10\x07\x12\x0c\n\x08REJECTED\x10\x08\x42\x11Z\x0fprimary.connectb\x06proto3"
16
+ descriptor_data = "\n\x0cresult.proto\x12\x0fprimary.connect\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\raddress.proto\x1a\x11\x63oded_value.proto\x1a\x0c\x64\x65vice.proto\x1a\x10identifier.proto\x1a\x0eprovider.proto\x1a\x0especimen.proto\"\xd7\x0e\n\x06Result\x12)\n\x04\x63ode\x18\x01 \x01(\x0b\x32\x1b.primary.connect.CodedValue\x12\x18\n\x10related_group_id\x18\x02 \x03(\t\x12+\n\x08specimen\x18\x03 \x01(\x0b\x32\x19.primary.connect.Specimen\x12\r\n\x05value\x18\x04 \x01(\t\x12\x35\n\nvalue_type\x18\x05 \x01(\x0e\x32!.primary.connect.Result.ValueType\x12\x38\n\x14\x63ompletion_date_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\x06report\x18\x07 \x01(\x0b\x32\x1e.primary.connect.Result.Report\x12\r\n\x05units\x18\x08 \x01(\t\x12\r\n\x05notes\x18\t \x03(\t\x12;\n\rabnormal_flag\x18\n \x01(\x0e\x32$.primary.connect.Result.AbnormalFlag\x12.\n\x06status\x18\x0c \x01(\x0e\x32\x1e.primary.connect.Result.Status\x12>\n\x1bprimary_results_interpreter\x18\r \x01(\x0b\x32\x19.primary.connect.Provider\x12\x32\n\x08producer\x18\x0e \x01(\x0b\x32 .primary.connect.Result.Producer\x12,\n\tperformer\x18\x0f \x01(\x0b\x32\x19.primary.connect.Provider\x12\x36\n\x0freference_range\x18\x10 \x01(\x0b\x32\x1d.primary.connect.Result.Range\x12\x37\n\x12observation_method\x18\x11 \x01(\x0b\x32\x1b.primary.connect.CodedValue\x12\x19\n\x11producer_order_id\x18\x12 \x01(\t\x12\x32\n\rfinding_value\x18\x13 \x01(\x0b\x32\x1b.primary.connect.CodedValue\x12\x31\n\x10resulting_device\x18\x14 \x01(\x0b\x32\x17.primary.connect.Device\x12.\n\tprocedure\x18\x15 \x01(\x0b\x32\x1b.primary.connect.CodedValue\x12\x10\n\x08suppress\x18\x16 \x01(\x08\x1al\n\x08Producer\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x1b.primary.connect.Identifier\x12\x0c\n\x04name\x18\x02 \x01(\t\x12)\n\x07\x61\x64\x64ress\x18\x03 \x01(\x0b\x32\x18.primary.connect.Address\x1a\x30\n\x05Range\x12\x0b\n\x03low\x18\x01 \x01(\x05\x12\x0c\n\x04high\x18\x02 \x01(\x05\x12\x0c\n\x04text\x18\x03 \x01(\t\x1a\x36\n\x06Report\x12\x11\n\tfile_type\x18\x01 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x02 \x01(\t\x12\x0b\n\x03url\x18\x03 \x01(\t\"\x97\x02\n\tValueType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0f\n\x0b\x43ODED_ENTRY\x10\x01\x12\x08\n\x04\x44\x41TE\x10\x02\x12\r\n\tDATE_TIME\x10\x03\x12\x15\n\x11\x45NCAPSULATED_DATA\x10\x04\x12\x12\n\x0e\x46ORMATTED_TEXT\x10\x05\x12\x06\n\x02ID\x10\x06\x12\x0f\n\x0bID_AND_NAME\x10\x07\x12\t\n\x05MONEY\x10\x08\x12\x08\n\x04NAME\x10\t\x12\x0b\n\x07NUMERIC\x10\n\x12\x10\n\x0cPHONE_NUMBER\x10\x0b\x12\t\n\x05PRICE\x10\x0c\x12\x15\n\x11REFERENCE_POINTER\x10\r\x12\n\n\x06STRING\x10\x0e\x12\x08\n\x04TIME\x10\x0f\x12\x16\n\x12STRUCTURED_NUMERIC\x10\x10\x12\x0b\n\x07\x41\x44\x44RESS\x10\x11\"\xc2\x02\n\x0c\x41\x62normalFlag\x12\x08\n\x04NONE\x10\x00\x12\x07\n\x03LOW\x10\x01\x12\x0c\n\x08VERY_LOW\x10\x02\x12\x08\n\x04HIGH\x10\x03\x12\r\n\tVERY_HIGH\x10\x04\x12\x0c\n\x08\x41\x42NORMAL\x10\x05\x12\x0f\n\x0bSUSCEPTIBLE\x10\x06\x12\r\n\tRESISTANT\x10\x07\x12\x10\n\x0cINTERMEDIATE\x10\x08\x12\x1a\n\x16MODERATELY_SUSCEPTIBLE\x10\t\x12\x14\n\x10VERY_SUSCEPTIBLE\x10\n\x12\x17\n\x13\x43RITICALLY_ABNORMAL\x10\x0b\x12\x12\n\x0e\x43RITICALLY_LOW\x10\x0c\x12\x13\n\x0f\x43RITICALLY_HIGH\x10\r\x12\x13\n\x0fNOT_SUSCEPTIBLE\x10\x0e\x12\x10\n\x0cINCONCLUSIVE\x10\x0f\x12\x11\n\rVERY_ABNORMAL\x10\x10\x12\n\n\x06NORMAL\x10\x11\"\x91\x01\n\x06Status\x12\x12\n\x0eNONE_SPECIFIED\x10\x00\x12\x0e\n\nINCOMPLETE\x10\x01\x12\r\n\tCORRECTED\x10\x02\x12\t\n\x05\x46INAL\x10\x03\x12\x0f\n\x0bUNAVAILABLE\x10\x04\x12\x0f\n\x0bPRELIMINARY\x10\x05\x12\x0c\n\x08\x43\x41NCELED\x10\x06\x12\x0b\n\x07\x44\x45LETED\x10\x07\x12\x0c\n\x08REJECTED\x10\x08\x42\x11Z\x0fprimary.connectb\x06proto3"
17
17
 
18
18
  pool = Google::Protobuf::DescriptorPool.generated_pool
19
19
 
20
20
  begin
21
21
  pool.add_serialized_file(descriptor_data)
22
- rescue TypeError => e
22
+ rescue TypeError
23
23
  # Compatibility code: will be removed in the next major version.
24
24
  require 'google/protobuf/descriptor_pb'
25
25
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -14,7 +14,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
14
14
 
15
15
  begin
16
16
  pool.add_serialized_file(descriptor_data)
17
- rescue TypeError => e
17
+ rescue TypeError
18
18
  # Compatibility code: will be removed in the next major version.
19
19
  require 'google/protobuf/descriptor_pb'
20
20
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -11,7 +11,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
11
11
 
12
12
  begin
13
13
  pool.add_serialized_file(descriptor_data)
14
- rescue TypeError => e
14
+ rescue TypeError
15
15
  # Compatibility code: will be removed in the next major version.
16
16
  require 'google/protobuf/descriptor_pb'
17
17
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -21,7 +21,7 @@ pool = Google::Protobuf::DescriptorPool.generated_pool
21
21
 
22
22
  begin
23
23
  pool.add_serialized_file(descriptor_data)
24
- rescue TypeError => e
24
+ rescue TypeError
25
25
  # Compatibility code: will be removed in the next major version.
26
26
  require 'google/protobuf/descriptor_pb'
27
27
  parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
@@ -106,4 +106,5 @@ message Result {
106
106
  CodedValue finding_value = 19; // Normalized value
107
107
  Device resulting_device = 20; // The device used to result
108
108
  CodedValue procedure = 21; // Procedure of the result
109
+ bool suppress = 22; // Suppress result delivery to provider/patient
109
110
  }
@@ -1,3 +1,3 @@
1
1
  module ConnectProto
2
- VERSION = '0.23.0'
2
+ VERSION = '0.24.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.23.0
4
+ version: 0.24.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-10-24 00:00:00.000000000 Z
11
+ date: 2023-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
150
  - !ruby/object:Gem::Version
151
151
  version: '0'
152
152
  requirements: []
153
- rubygems_version: 3.2.15
153
+ rubygems_version: 3.4.13
154
154
  signing_key:
155
155
  specification_version: 4
156
156
  summary: Primary Connect Protobuf