candidhealth 1.14.3 → 1.14.6

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.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/lib/candid/client.rb +6 -1
  3. data/lib/candid/commons/types/claim_adjustment_group_codes.rb +22 -0
  4. data/lib/candid/insurance_adjudications/client.rb +17 -0
  5. data/lib/candid/insurance_adjudications/v_1/client.rb +37 -0
  6. data/lib/candid/insurance_adjudications/v_1/types/claim_adjudication.rb +23 -0
  7. data/lib/candid/insurance_adjudications/v_1/types/insurance_adjudication.rb +21 -0
  8. data/lib/candid/insurance_adjudications/v_1/types/service_line_adjudication.rb +27 -0
  9. data/lib/candid/patient_payments/v_4/types/card_payment_method.rb +11 -0
  10. data/lib/candid/patient_payments/v_4/types/cash_payment_method.rb +11 -0
  11. data/lib/candid/patient_payments/v_4/types/check_payment_method.rb +13 -0
  12. data/lib/candid/patient_payments/v_4/types/patient_payment.rb +3 -0
  13. data/lib/candid/patient_payments/v_4/types/payment_method.rb +19 -0
  14. data/lib/candid/patient_payments/v_4/types/payment_method_detail.rb +18 -0
  15. data/lib/candid/pre_encounter/eligibility_checks/v_1/types/eligibility_request.rb +2 -0
  16. data/lib/candid/service_lines/v_2/types/service_line.rb +1 -0
  17. data/lib/candid/service_lines/v_2/types/service_line_create_base_base.rb +1 -0
  18. data/lib/candid/service_lines/v_2/types/service_line_create_standalone.rb +1 -0
  19. data/lib/candid/service_lines/v_2/types/service_line_update_base.rb +1 -0
  20. data/lib/candid/service_lines/v_2/types/universal_service_line_create_standalone.rb +1 -0
  21. data/lib/candid/version.rb +1 -1
  22. data/lib/candid/x_12/v_1/types/carc.rb +418 -0
  23. data/lib/candid/x_12/v_1/types/claim_adjustment_reason_code.rb +15 -0
  24. data/lib/candid/x_12/v_1/types/rarc.rb +1201 -0
  25. data/lib/candid/x_12/v_1/types/remittance_advice_remark_code.rb +13 -0
  26. data/lib/candid.rb +15 -0
  27. data/reference.md +55 -0
  28. metadata +16 -1
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Candid
4
+ module X12
5
+ module V1
6
+ module Types
7
+ class RemittanceAdviceRemarkCode < Internal::Types::Model
8
+ field :reason_code, -> { Candid::X12::V1::Types::Rarc }, optional: false, nullable: false
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
data/lib/candid.rb CHANGED
@@ -447,6 +447,14 @@ require_relative "candid/import_invoice/v_1/types/invoice_item_update_type"
447
447
  require_relative "candid/import_invoice/v_1/types/import_invoices_page"
448
448
  require_relative "candid/import_invoice/v_1/types/invoice_item_info_update"
449
449
  require_relative "candid/import_invoice/v_1/types/import_invoice_update_request"
450
+ require_relative "candid/x_12/v_1/types/carc"
451
+ require_relative "candid/commons/types/claim_adjustment_group_codes"
452
+ require_relative "candid/x_12/v_1/types/claim_adjustment_reason_code"
453
+ require_relative "candid/x_12/v_1/types/rarc"
454
+ require_relative "candid/x_12/v_1/types/remittance_advice_remark_code"
455
+ require_relative "candid/insurance_adjudications/v_1/types/service_line_adjudication"
456
+ require_relative "candid/insurance_adjudications/v_1/types/claim_adjudication"
457
+ require_relative "candid/insurance_adjudications/v_1/types/insurance_adjudication"
450
458
  require_relative "candid/financials/types/service_line_allocation_target"
451
459
  require_relative "candid/financials/types/claim_allocation_target"
452
460
  require_relative "candid/financials/types/billing_provider_allocation_target"
@@ -509,6 +517,11 @@ require_relative "candid/patient_ar/v_1/types/patient_ar_status"
509
517
  require_relative "candid/patient_ar/v_1/types/inventory_record"
510
518
  require_relative "candid/patient_ar/v_1/types/list_inventory_paged_response"
511
519
  require_relative "candid/patient_ar/v_1/types/invalid_filters_error_type"
520
+ require_relative "candid/patient_payments/v_4/types/cash_payment_method"
521
+ require_relative "candid/patient_payments/v_4/types/check_payment_method"
522
+ require_relative "candid/patient_payments/v_4/types/card_payment_method"
523
+ require_relative "candid/patient_payments/v_4/types/payment_method"
524
+ require_relative "candid/patient_payments/v_4/types/payment_method_detail"
512
525
  require_relative "candid/financials/types/patient_transaction_source"
513
526
  require_relative "candid/patient_payments/v_4/types/patient_payment"
514
527
  require_relative "candid/patient_payments/v_4/types/patient_payments_page"
@@ -777,6 +790,8 @@ require_relative "candid/health_care_code_information/v_1/client"
777
790
  require_relative "candid/import_invoice/client"
778
791
  require_relative "candid/import_invoice/v_1/client"
779
792
  require_relative "candid/import_invoice/v_1/types/search_imported_invoices_request"
793
+ require_relative "candid/insurance_adjudications/client"
794
+ require_relative "candid/insurance_adjudications/v_1/client"
780
795
  require_relative "candid/insurance_payments/client"
781
796
  require_relative "candid/insurance_payments/v_1/client"
782
797
  require_relative "candid/insurance_payments/v_1/types/get_multi_insurance_payment_request"
data/reference.md CHANGED
@@ -6354,6 +6354,61 @@ client.import_invoice.v_1.update({});
6354
6354
  </dl>
6355
6355
 
6356
6356
 
6357
+ </dd>
6358
+ </dl>
6359
+ </details>
6360
+
6361
+ ## InsuranceAdjudications V1
6362
+ <details><summary><code>client.insurance_adjudications.v_1.get(insurance_adjudication_id) -> Candid::InsuranceAdjudications::V1::Types::InsuranceAdjudication</code></summary>
6363
+ <dl>
6364
+ <dd>
6365
+
6366
+ #### 📝 Description
6367
+
6368
+ <dl>
6369
+ <dd>
6370
+
6371
+ <dl>
6372
+ <dd>
6373
+
6374
+ Retrieves a previously created insurance adjudication by its `insurance_adjudication_id`.
6375
+ </dd>
6376
+ </dl>
6377
+ </dd>
6378
+ </dl>
6379
+
6380
+ #### 🔌 Usage
6381
+
6382
+ <dl>
6383
+ <dd>
6384
+
6385
+ <dl>
6386
+ <dd>
6387
+
6388
+ ```ruby
6389
+ client.insurance_adjudications.v_1.get();
6390
+ ```
6391
+ </dd>
6392
+ </dl>
6393
+ </dd>
6394
+ </dl>
6395
+
6396
+ #### ⚙️ Parameters
6397
+
6398
+ <dl>
6399
+ <dd>
6400
+
6401
+ <dl>
6402
+ <dd>
6403
+
6404
+ **insurance_adjudication_id:** `String`
6405
+
6406
+ </dd>
6407
+ </dl>
6408
+ </dd>
6409
+ </dl>
6410
+
6411
+
6357
6412
  </dd>
6358
6413
  </dl>
6359
6414
  </details>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: candidhealth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.3
4
+ version: 1.14.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Candid
@@ -69,6 +69,7 @@ files:
69
69
  - lib/candid/clinical_trials/v_1/types/clinical_trial_phase.rb
70
70
  - lib/candid/clinical_trials/v_1/types/mutable_clinical_trial.rb
71
71
  - lib/candid/commons/types/billing_provider_commercial_license_type.rb
72
+ - lib/candid/commons/types/claim_adjustment_group_codes.rb
72
73
  - lib/candid/commons/types/claim_submission_payer_responsibility_type.rb
73
74
  - lib/candid/commons/types/clearinghouse.rb
74
75
  - lib/candid/commons/types/date_range_optional_end.rb
@@ -465,6 +466,11 @@ files:
465
466
  - lib/candid/individual/types/subscriber_base_optional.rb
466
467
  - lib/candid/individual/types/subscriber_create.rb
467
468
  - lib/candid/individual/types/subscriber_create_optional.rb
469
+ - lib/candid/insurance_adjudications/client.rb
470
+ - lib/candid/insurance_adjudications/v_1/client.rb
471
+ - lib/candid/insurance_adjudications/v_1/types/claim_adjudication.rb
472
+ - lib/candid/insurance_adjudications/v_1/types/insurance_adjudication.rb
473
+ - lib/candid/insurance_adjudications/v_1/types/service_line_adjudication.rb
468
474
  - lib/candid/insurance_cards/v_2/types/insurance_card.rb
469
475
  - lib/candid/insurance_cards/v_2/types/insurance_card_base.rb
470
476
  - lib/candid/insurance_cards/v_2/types/insurance_card_create.rb
@@ -605,12 +611,17 @@ files:
605
611
  - lib/candid/patient_payments/v_3/types/patient_payment_source.rb
606
612
  - lib/candid/patient_payments/v_3/types/patient_payment_status.rb
607
613
  - lib/candid/patient_payments/v_4/client.rb
614
+ - lib/candid/patient_payments/v_4/types/card_payment_method.rb
615
+ - lib/candid/patient_payments/v_4/types/cash_payment_method.rb
616
+ - lib/candid/patient_payments/v_4/types/check_payment_method.rb
608
617
  - lib/candid/patient_payments/v_4/types/get_multi_patient_payments_request.rb
609
618
  - lib/candid/patient_payments/v_4/types/patient_payment.rb
610
619
  - lib/candid/patient_payments/v_4/types/patient_payment_create.rb
611
620
  - lib/candid/patient_payments/v_4/types/patient_payment_sort_field.rb
612
621
  - lib/candid/patient_payments/v_4/types/patient_payment_update.rb
613
622
  - lib/candid/patient_payments/v_4/types/patient_payments_page.rb
623
+ - lib/candid/patient_payments/v_4/types/payment_method.rb
624
+ - lib/candid/patient_payments/v_4/types/payment_method_detail.rb
614
625
  - lib/candid/patient_refunds/client.rb
615
626
  - lib/candid/patient_refunds/v_1/client.rb
616
627
  - lib/candid/patient_refunds/v_1/types/get_multi_patient_refunds_request.rb
@@ -883,8 +894,12 @@ files:
883
894
  - lib/candid/write_offs/v_1/types/write_off_create.rb
884
895
  - lib/candid/write_offs/v_1/types/write_off_sort_field.rb
885
896
  - lib/candid/write_offs/v_1/types/write_offs_page.rb
897
+ - lib/candid/x_12/v_1/types/carc.rb
898
+ - lib/candid/x_12/v_1/types/claim_adjustment_reason_code.rb
886
899
  - lib/candid/x_12/v_1/types/patient_discharge_status_code.rb
887
900
  - lib/candid/x_12/v_1/types/point_of_origin_for_admission_or_visit_code.rb
901
+ - lib/candid/x_12/v_1/types/rarc.rb
902
+ - lib/candid/x_12/v_1/types/remittance_advice_remark_code.rb
888
903
  - lib/candid/x_12/v_1/types/type_of_admission_or_visit_code.rb
889
904
  - lib/candid/x_12/v_1/types/type_of_bill_composite.rb
890
905
  - lib/candid/x_12/v_1/types/type_of_bill_composite_base.rb