candidhealth 0.18.1 → 0.18.2

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: df25c870af6cb1d418bf6307d87cd5b2f1dc80efddca6f8dc0cbd0da6ec5a402
4
- data.tar.gz: be621ae6d03ca2cf805b70f11d2661b71e9e0104176e2703c3e78078731e0de4
3
+ metadata.gz: 90993023bc842df7ca7f776af7dfb84e6a88f49a22cec6194d94683bda4ca58d
4
+ data.tar.gz: c76d2e483062d0372477cdd1f899284a6f9c1a892032da95f5b4076aabe6788b
5
5
  SHA512:
6
- metadata.gz: be96f46c2efeecc09f8ef186d9d6ce23acd2dd4303b973317deec12e5a79ffde9ba883ad3783c410e103262ab5115486894d580764042ab365dca93a896ec0a8
7
- data.tar.gz: 30f528e60f40f52dc9e4001c9c013ef7576c1309163899d4ae4afd7aedf46365de7d266a897dfce478c9c90a206960c594de9eaa7349bdf44431ba1dd52ca5f5
6
+ metadata.gz: 311657aa83abffe1f96d47404c6fbd9e3cbf814a5993ac6185cb7442f74440c6747a5406082ed550dbde471d3cbb589d7dbc554c931cced780dafc7e4b287bb1
7
+ data.tar.gz: 85cc2cd24f7295c20e3b4b88e21a52fcd1575df42f946e8fc2b7d56e59d68b6052fe8a30f9ee8ba02bfe59220045a0c7491bd8917524474aa9684eb5d15d7b26
@@ -12,6 +12,7 @@ module CandidApiClient
12
12
  PR = "PR"
13
13
  RR = "RR"
14
14
  NC = "NC"
15
+ UNKNOWN = "UNKNOWN"
15
16
  end
16
17
  end
17
18
  end
@@ -16,8 +16,8 @@ module CandidApiClient
16
16
  # @param body_temperature_f [Float]
17
17
  # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
18
18
  # @return [Encounters::V4::Vitals]
19
- def initialize(height_in:, weight_lbs:, blood_pressure_systolic_mmhg:, blood_pressure_diastolic_mmhg:,
20
- body_temperature_f: nil, additional_properties: nil)
19
+ def initialize(height_in: nil, weight_lbs: nil, blood_pressure_systolic_mmhg: nil,
20
+ blood_pressure_diastolic_mmhg: nil, body_temperature_f: nil, additional_properties: nil)
21
21
  # @type [Integer]
22
22
  @height_in = height_in
23
23
  # @type [Integer]
@@ -66,10 +66,10 @@ module CandidApiClient
66
66
  # @param obj [Object]
67
67
  # @return [Void]
68
68
  def self.validate_raw(obj:)
69
- obj.height_in.is_a?(Integer) != false || raise("Passed value for field obj.height_in is not the expected type, validation failed.")
70
- obj.weight_lbs.is_a?(Integer) != false || raise("Passed value for field obj.weight_lbs is not the expected type, validation failed.")
71
- obj.blood_pressure_systolic_mmhg.is_a?(Integer) != false || raise("Passed value for field obj.blood_pressure_systolic_mmhg is not the expected type, validation failed.")
72
- obj.blood_pressure_diastolic_mmhg.is_a?(Integer) != false || raise("Passed value for field obj.blood_pressure_diastolic_mmhg is not the expected type, validation failed.")
69
+ obj.height_in&.is_a?(Integer) != false || raise("Passed value for field obj.height_in is not the expected type, validation failed.")
70
+ obj.weight_lbs&.is_a?(Integer) != false || raise("Passed value for field obj.weight_lbs is not the expected type, validation failed.")
71
+ obj.blood_pressure_systolic_mmhg&.is_a?(Integer) != false || raise("Passed value for field obj.blood_pressure_systolic_mmhg is not the expected type, validation failed.")
72
+ obj.blood_pressure_diastolic_mmhg&.is_a?(Integer) != false || raise("Passed value for field obj.blood_pressure_diastolic_mmhg is not the expected type, validation failed.")
73
73
  obj.body_temperature_f&.is_a?(Float) != false || raise("Passed value for field obj.body_temperature_f is not the expected type, validation failed.")
74
74
  end
75
75
  end
@@ -8,6 +8,7 @@ module CandidApiClient
8
8
  PAID = "paid"
9
9
  VOID = "void"
10
10
  UNCOLLECTIBLE = "uncollectible"
11
+ HELD = "held"
11
12
  end
12
13
  end
13
14
  end
@@ -406,6 +406,7 @@ module CandidApiClient
406
406
  CARC_Y_1 = "Y1"
407
407
  CARC_Y_2 = "Y2"
408
408
  CARC_Y_3 = "Y3"
409
+ UNKNOWN = "UNKNOWN"
409
410
  end
410
411
  end
411
412
  end
data/lib/requests.rb CHANGED
@@ -20,7 +20,7 @@ module CandidApiClient
20
20
  @headers = {
21
21
  "X-Fern-Language": "Ruby",
22
22
  "X-Fern-SDK-Name": "candidhealth",
23
- "X-Fern-SDK-Version": "0.18.1",
23
+ "X-Fern-SDK-Version": "0.18.2",
24
24
  "Authorization": "Bearer #{token}"
25
25
  }
26
26
  @conn = Faraday.new(@base_url, headers: @headers) do |faraday|
@@ -46,7 +46,7 @@ module CandidApiClient
46
46
  @headers = {
47
47
  "X-Fern-Language": "Ruby",
48
48
  "X-Fern-SDK-Name": "candidhealth",
49
- "X-Fern-SDK-Version": "0.18.1",
49
+ "X-Fern-SDK-Version": "0.18.2",
50
50
  "Authorization": "Bearer #{token}"
51
51
  }
52
52
  @conn = Faraday.new(@base_url, headers: @headers) do |faraday|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: candidhealth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.1
4
+ version: 0.18.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ''
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-14 00:00:00.000000000 Z
11
+ date: 2024-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-http-faraday