mindee 4.6.0 → 4.7.0.pre.rc2
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 +4 -4
- data/CHANGELOG.md +20 -0
- data/README.md +21 -222
- data/docs/code_samples/default_v2.txt +28 -0
- data/lib/mindee/client.rb +11 -30
- data/lib/mindee/client_v2.rb +109 -0
- data/lib/mindee/errors/mindee_http_error_v2.rb +26 -0
- data/lib/mindee/errors/mindee_input_error.rb +1 -1
- data/lib/mindee/errors.rb +1 -0
- data/lib/mindee/geometry/point.rb +2 -2
- data/lib/mindee/geometry/quadrilateral.rb +4 -4
- data/lib/mindee/geometry/utils.rb +1 -0
- data/lib/mindee/http/api_settings_v2.rb +61 -0
- data/lib/mindee/http/endpoint.rb +12 -6
- data/lib/mindee/http/http_error_handler.rb +17 -4
- data/lib/mindee/http/mindee_api_v2.rb +148 -0
- data/lib/mindee/http/response_validation.rb +20 -1
- data/lib/mindee/http/workflow_endpoint.rb +2 -2
- data/lib/mindee/http.rb +2 -0
- data/lib/mindee/image/extracted_image.rb +1 -1
- data/lib/mindee/image/image_extractor.rb +12 -15
- data/lib/mindee/input/inference_parameters.rb +116 -0
- data/lib/mindee/input/local_response.rb +10 -1
- data/lib/mindee/input/polling_options.rb +26 -0
- data/lib/mindee/input/sources/base64_input_source.rb +2 -2
- data/lib/mindee/input/sources/local_input_source.rb +49 -30
- data/lib/mindee/input.rb +2 -0
- data/lib/mindee/page_options.rb +24 -0
- data/lib/mindee/parsing/common/api_request.rb +2 -2
- data/lib/mindee/parsing/common/api_response.rb +4 -0
- data/lib/mindee/parsing/common/execution.rb +1 -1
- data/lib/mindee/parsing/common/extras/extras.rb +2 -2
- data/lib/mindee/parsing/common/extras/rag_extra.rb +2 -0
- data/lib/mindee/parsing/common/ocr/ocr.rb +4 -6
- data/lib/mindee/parsing/common/orientation.rb +2 -2
- data/lib/mindee/parsing/common/product.rb +6 -1
- data/lib/mindee/parsing/standard/amount_field.rb +2 -2
- data/lib/mindee/parsing/standard/feature_field.rb +1 -1
- data/lib/mindee/parsing/standard/tax_field.rb +1 -1
- data/lib/mindee/parsing/universal/universal_list_field.rb +2 -2
- data/lib/mindee/parsing/universal/universal_object_field.rb +7 -4
- data/lib/mindee/parsing/v2/common_response.rb +18 -0
- data/lib/mindee/parsing/v2/error_response.rb +36 -0
- data/lib/mindee/parsing/v2/field/base_field.rb +60 -0
- data/lib/mindee/parsing/v2/field/field_confidence.rb +91 -0
- data/lib/mindee/parsing/v2/field/field_location.rb +36 -0
- data/lib/mindee/parsing/v2/field/inference_fields.rb +96 -0
- data/lib/mindee/parsing/v2/field/list_field.rb +88 -0
- data/lib/mindee/parsing/v2/field/object_field.rb +102 -0
- data/lib/mindee/parsing/v2/field/simple_field.rb +55 -0
- data/lib/mindee/parsing/v2/field.rb +9 -0
- data/lib/mindee/parsing/v2/inference.rb +50 -0
- data/lib/mindee/parsing/v2/inference_file.rb +38 -0
- data/lib/mindee/parsing/v2/inference_model.rb +18 -0
- data/lib/mindee/parsing/v2/inference_response.rb +30 -0
- data/lib/mindee/parsing/v2/inference_result.rb +49 -0
- data/lib/mindee/parsing/v2/inference_result_options.rb +21 -0
- data/lib/mindee/parsing/v2/job.rb +86 -0
- data/lib/mindee/parsing/v2/job_response.rb +30 -0
- data/lib/mindee/parsing/v2/job_webhook.rb +60 -0
- data/lib/mindee/parsing/v2/raw_text.rb +21 -0
- data/lib/mindee/parsing/v2.rb +15 -0
- data/lib/mindee/pdf/extracted_pdf.rb +5 -3
- data/lib/mindee/pdf/pdf_extractor.rb +11 -7
- data/lib/mindee/pdf/pdf_processor.rb +6 -6
- data/lib/mindee/pdf/pdf_tools.rb +6 -4
- data/lib/mindee/product/universal/universal_prediction.rb +4 -4
- data/lib/mindee/version.rb +2 -2
- data/lib/mindee.rb +6 -0
- data/mindee.gemspec +1 -1
- data/sig/custom/mini_magick.rbs +14 -7
- data/sig/custom/net_http.rbs +4 -4
- data/sig/custom/origami.rbs +9 -4
- data/sig/mindee/client.rbs +14 -19
- data/sig/mindee/client_v2.rbs +17 -0
- data/sig/mindee/errors/mindee_http_error.rbs +6 -5
- data/sig/mindee/errors/mindee_http_error_v2.rbs +12 -0
- data/sig/mindee/errors/mindee_input_error.rbs +3 -2
- data/sig/mindee/geometry/min_max.rbs +4 -3
- data/sig/mindee/geometry/point.rbs +5 -6
- data/sig/mindee/geometry/polygon.rbs +3 -3
- data/sig/mindee/geometry/quadrilateral.rbs +5 -8
- data/sig/mindee/geometry/utils.rbs +8 -8
- data/sig/mindee/http/api_settings_v2.rbs +23 -0
- data/sig/mindee/http/endpoint.rbs +12 -11
- data/sig/mindee/http/http_error_handler.rbs +8 -3
- data/sig/mindee/http/mindee_api_v2.rbs +18 -0
- data/sig/mindee/http/response_validation.rbs +1 -0
- data/sig/mindee/http/workflow_endpoint.rbs +1 -1
- data/sig/mindee/image/extracted_image.rbs +2 -2
- data/sig/mindee/image/image_compressor.rbs +1 -1
- data/sig/mindee/image/image_extractor.rbs +5 -5
- data/sig/mindee/image/image_utils.rbs +10 -10
- data/sig/mindee/input/inference_parameters.rbs +30 -0
- data/sig/mindee/input/local_response.rbs +6 -5
- data/sig/mindee/input/polling_options.rbs +12 -0
- data/sig/mindee/input/sources/base64_input_source.rbs +1 -1
- data/sig/mindee/input/sources/local_input_source.rbs +14 -7
- data/sig/mindee/input/sources/url_input_source.rbs +1 -1
- data/sig/mindee/logging/logger.rbs +2 -0
- data/sig/mindee/page_options.rbs +11 -0
- data/sig/mindee/parsing/common/api_request.rbs +6 -6
- data/sig/mindee/parsing/common/api_response.rbs +2 -2
- data/sig/mindee/parsing/common/document.rbs +10 -10
- data/sig/mindee/parsing/common/execution.rbs +15 -14
- data/sig/mindee/parsing/common/execution_file.rbs +3 -3
- data/sig/mindee/parsing/common/extras/cropper_extra.rbs +3 -2
- data/sig/mindee/parsing/common/extras/extras.rbs +6 -5
- data/sig/mindee/parsing/common/extras/full_text_ocr_extra.rbs +2 -1
- data/sig/mindee/parsing/common/inference.rbs +16 -9
- data/sig/mindee/parsing/common/job.rbs +2 -2
- data/sig/mindee/parsing/common/ocr/mvision_v1.rbs +2 -2
- data/sig/mindee/parsing/common/ocr/ocr.rbs +22 -20
- data/sig/mindee/parsing/common/orientation.rbs +4 -3
- data/sig/mindee/parsing/common/page.rbs +6 -5
- data/sig/mindee/parsing/common/product.rbs +4 -4
- data/sig/mindee/parsing/common/workflow_response.rbs +8 -4
- data/sig/mindee/parsing/standard/abstract_field.rbs +1 -1
- data/sig/mindee/parsing/standard/address_field.rbs +1 -1
- data/sig/mindee/parsing/standard/amount_field.rbs +6 -4
- data/sig/mindee/parsing/standard/base_field.rbs +1 -1
- data/sig/mindee/parsing/standard/boolean_field.rbs +1 -1
- data/sig/mindee/parsing/standard/company_registration_field.rbs +3 -2
- data/sig/mindee/parsing/standard/date_field.rbs +6 -6
- data/sig/mindee/parsing/standard/locale_field.rbs +1 -1
- data/sig/mindee/parsing/standard/payment_details_field.rbs +7 -6
- data/sig/mindee/parsing/standard/position_field.rbs +2 -2
- data/sig/mindee/parsing/standard/string_field.rbs +1 -1
- data/sig/mindee/parsing/standard/tax_field.rbs +8 -7
- data/sig/mindee/parsing/universal/universal_list_field.rbs +4 -5
- data/sig/mindee/parsing/universal/universal_object_field.rbs +17 -11
- data/sig/mindee/parsing/v2/common_response.rbs +11 -0
- data/sig/mindee/parsing/v2/error_response.rbs +16 -0
- data/sig/mindee/parsing/v2/field/base_field.rbs +17 -0
- data/sig/mindee/parsing/v2/field/field_confidence.rbs +27 -0
- data/sig/mindee/parsing/v2/field/field_location.rbs +16 -0
- data/sig/mindee/parsing/v2/field/inference_fields.rbs +19 -0
- data/sig/mindee/parsing/v2/field/list_field.rbs +21 -0
- data/sig/mindee/parsing/v2/field/object_field.rbs +21 -0
- data/sig/mindee/parsing/v2/field/simple_field.rbs +16 -0
- data/sig/mindee/parsing/v2/inference.rbs +16 -0
- data/sig/mindee/parsing/v2/inference_file.rbs +15 -0
- data/sig/mindee/parsing/v2/inference_model.rbs +11 -0
- data/sig/mindee/parsing/v2/inference_response.rbs +12 -0
- data/sig/mindee/parsing/v2/inference_result.rbs +13 -0
- data/sig/mindee/parsing/v2/inference_result_options.rbs +11 -0
- data/sig/mindee/parsing/v2/job.rbs +22 -0
- data/sig/mindee/parsing/v2/job_response.rbs +12 -0
- data/sig/mindee/parsing/v2/job_webhook.rbs +17 -0
- data/sig/mindee/parsing/v2/raw_text.rbs +12 -0
- data/sig/mindee/pdf/extracted_pdf.rbs +6 -6
- data/sig/mindee/pdf/pdf_compressor.rbs +4 -4
- data/sig/mindee/pdf/pdf_extractor.rbs +8 -7
- data/sig/mindee/pdf/pdf_processor.rbs +4 -4
- data/sig/mindee/pdf/pdf_tools.rbs +22 -16
- data/sig/mindee/product/barcode_reader/barcode_reader_v1.rbs +1 -1
- data/sig/mindee/product/barcode_reader/barcode_reader_v1_document.rbs +1 -1
- data/sig/mindee/product/barcode_reader/barcode_reader_v1_page.rbs +2 -2
- data/sig/mindee/product/bill_of_lading/bill_of_lading_v1.rbs +1 -1
- data/sig/mindee/product/bill_of_lading/bill_of_lading_v1_carrier.rbs +2 -2
- data/sig/mindee/product/bill_of_lading/bill_of_lading_v1_carrier_item.rbs +3 -3
- data/sig/mindee/product/bill_of_lading/bill_of_lading_v1_consignee.rbs +2 -2
- data/sig/mindee/product/bill_of_lading/bill_of_lading_v1_document.rbs +1 -1
- data/sig/mindee/product/bill_of_lading/bill_of_lading_v1_notify_party.rbs +2 -2
- data/sig/mindee/product/bill_of_lading/bill_of_lading_v1_page.rbs +2 -2
- data/sig/mindee/product/bill_of_lading/bill_of_lading_v1_shipper.rbs +2 -2
- data/sig/mindee/product/business_card/business_card_v1.rbs +1 -1
- data/sig/mindee/product/business_card/business_card_v1_document.rbs +1 -1
- data/sig/mindee/product/business_card/business_card_v1_page.rbs +2 -2
- data/sig/mindee/product/cropper/cropper_v1.rbs +1 -1
- data/sig/mindee/product/cropper/cropper_v1_document.rbs +1 -1
- data/sig/mindee/product/cropper/cropper_v1_page.rbs +2 -2
- data/sig/mindee/product/delivery_note/delivery_note_v1.rbs +1 -1
- data/sig/mindee/product/delivery_note/delivery_note_v1_document.rbs +1 -1
- data/sig/mindee/product/delivery_note/delivery_note_v1_page.rbs +2 -2
- data/sig/mindee/product/driver_license/driver_license_v1.rbs +1 -1
- data/sig/mindee/product/driver_license/driver_license_v1_document.rbs +1 -1
- data/sig/mindee/product/driver_license/driver_license_v1_page.rbs +2 -2
- data/sig/mindee/product/financial_document/financial_document_v1.rbs +1 -1
- data/sig/mindee/product/financial_document/financial_document_v1_document.rbs +1 -1
- data/sig/mindee/product/financial_document/financial_document_v1_line_item.rbs +3 -3
- data/sig/mindee/product/financial_document/financial_document_v1_page.rbs +2 -2
- data/sig/mindee/product/fr/bank_account_details/bank_account_details_v1.rbs +1 -1
- data/sig/mindee/product/fr/bank_account_details/bank_account_details_v1_document.rbs +1 -1
- data/sig/mindee/product/fr/bank_account_details/bank_account_details_v1_page.rbs +2 -2
- data/sig/mindee/product/fr/bank_account_details/bank_account_details_v2.rbs +1 -1
- data/sig/mindee/product/fr/bank_account_details/bank_account_details_v2_bban.rbs +2 -2
- data/sig/mindee/product/fr/bank_account_details/bank_account_details_v2_document.rbs +1 -1
- data/sig/mindee/product/fr/bank_account_details/bank_account_details_v2_page.rbs +2 -2
- data/sig/mindee/product/fr/bank_statement/bank_statement_v2.rbs +1 -1
- data/sig/mindee/product/fr/bank_statement/bank_statement_v2_document.rbs +1 -1
- data/sig/mindee/product/fr/bank_statement/bank_statement_v2_page.rbs +2 -2
- data/sig/mindee/product/fr/bank_statement/bank_statement_v2_transaction.rbs +3 -3
- data/sig/mindee/product/fr/carte_grise/carte_grise_v1.rbs +1 -1
- data/sig/mindee/product/fr/carte_grise/carte_grise_v1_document.rbs +1 -1
- data/sig/mindee/product/fr/carte_grise/carte_grise_v1_page.rbs +2 -2
- data/sig/mindee/product/fr/energy_bill/energy_bill_v1.rbs +1 -1
- data/sig/mindee/product/fr/energy_bill/energy_bill_v1_document.rbs +1 -1
- data/sig/mindee/product/fr/energy_bill/energy_bill_v1_energy_consumer.rbs +2 -2
- data/sig/mindee/product/fr/energy_bill/energy_bill_v1_energy_supplier.rbs +2 -2
- data/sig/mindee/product/fr/energy_bill/energy_bill_v1_energy_usage.rbs +3 -3
- data/sig/mindee/product/fr/energy_bill/energy_bill_v1_meter_detail.rbs +2 -2
- data/sig/mindee/product/fr/energy_bill/energy_bill_v1_page.rbs +2 -2
- data/sig/mindee/product/fr/energy_bill/energy_bill_v1_subscription.rbs +3 -3
- data/sig/mindee/product/fr/energy_bill/energy_bill_v1_taxes_and_contribution.rbs +3 -3
- data/sig/mindee/product/fr/health_card/health_card_v1.rbs +1 -1
- data/sig/mindee/product/fr/health_card/health_card_v1_document.rbs +1 -1
- data/sig/mindee/product/fr/health_card/health_card_v1_page.rbs +2 -2
- data/sig/mindee/product/fr/id_card/id_card_v1.rbs +1 -1
- data/sig/mindee/product/fr/id_card/id_card_v1_document.rbs +1 -1
- data/sig/mindee/product/fr/id_card/id_card_v1_page.rbs +2 -2
- data/sig/mindee/product/fr/id_card/id_card_v2.rbs +1 -1
- data/sig/mindee/product/fr/id_card/id_card_v2_document.rbs +1 -1
- data/sig/mindee/product/fr/id_card/id_card_v2_page.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v2.rbs +1 -1
- data/sig/mindee/product/fr/payslip/payslip_v2_bank_account_detail.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v2_document.rbs +1 -1
- data/sig/mindee/product/fr/payslip/payslip_v2_employee.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v2_employer.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v2_employment.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v2_page.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v2_pay_detail.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v2_pay_period.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v2_pto.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v2_salary_detail.rbs +3 -3
- data/sig/mindee/product/fr/payslip/payslip_v3.rbs +1 -1
- data/sig/mindee/product/fr/payslip/payslip_v3_bank_account_detail.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v3_document.rbs +1 -1
- data/sig/mindee/product/fr/payslip/payslip_v3_employee.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v3_employer.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v3_employment.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v3_page.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v3_paid_time_off.rbs +3 -3
- data/sig/mindee/product/fr/payslip/payslip_v3_pay_detail.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v3_pay_period.rbs +2 -2
- data/sig/mindee/product/fr/payslip/payslip_v3_salary_detail.rbs +3 -3
- data/sig/mindee/product/ind/indian_passport/indian_passport_v1.rbs +1 -1
- data/sig/mindee/product/ind/indian_passport/indian_passport_v1_document.rbs +1 -1
- data/sig/mindee/product/ind/indian_passport/indian_passport_v1_page.rbs +2 -2
- data/sig/mindee/product/international_id/international_id_v2.rbs +1 -1
- data/sig/mindee/product/international_id/international_id_v2_document.rbs +1 -1
- data/sig/mindee/product/international_id/international_id_v2_page.rbs +2 -2
- data/sig/mindee/product/invoice/invoice_v4.rbs +1 -1
- data/sig/mindee/product/invoice/invoice_v4_document.rbs +1 -1
- data/sig/mindee/product/invoice/invoice_v4_line_item.rbs +3 -3
- data/sig/mindee/product/invoice/invoice_v4_page.rbs +2 -2
- data/sig/mindee/product/invoice_splitter/invoice_splitter_v1.rbs +1 -1
- data/sig/mindee/product/invoice_splitter/invoice_splitter_v1_document.rbs +1 -1
- data/sig/mindee/product/invoice_splitter/invoice_splitter_v1_invoice_page_group.rbs +3 -3
- data/sig/mindee/product/invoice_splitter/invoice_splitter_v1_page.rbs +2 -2
- data/sig/mindee/product/multi_receipts_detector/multi_receipts_detector_v1.rbs +1 -1
- data/sig/mindee/product/multi_receipts_detector/multi_receipts_detector_v1_document.rbs +1 -1
- data/sig/mindee/product/multi_receipts_detector/multi_receipts_detector_v1_page.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1.rbs +1 -1
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_added_sugar.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_calorie.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_cholesterol.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_dietary_fiber.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_document.rbs +1 -1
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_nutrient.rbs +3 -3
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_page.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_protein.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_saturated_fat.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_serving_size.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_sodium.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_total_carbohydrate.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_total_fat.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_total_sugar.rbs +2 -2
- data/sig/mindee/product/nutrition_facts_label/nutrition_facts_label_v1_trans_fat.rbs +2 -2
- data/sig/mindee/product/passport/passport_v1.rbs +1 -1
- data/sig/mindee/product/passport/passport_v1_document.rbs +1 -1
- data/sig/mindee/product/passport/passport_v1_page.rbs +2 -2
- data/sig/mindee/product/receipt/receipt_v5.rbs +1 -1
- data/sig/mindee/product/receipt/receipt_v5_document.rbs +1 -1
- data/sig/mindee/product/receipt/receipt_v5_line_item.rbs +3 -3
- data/sig/mindee/product/receipt/receipt_v5_page.rbs +2 -2
- data/sig/mindee/product/resume/resume_v1.rbs +1 -1
- data/sig/mindee/product/resume/resume_v1_certificate.rbs +3 -3
- data/sig/mindee/product/resume/resume_v1_document.rbs +1 -1
- data/sig/mindee/product/resume/resume_v1_education.rbs +3 -3
- data/sig/mindee/product/resume/resume_v1_language.rbs +3 -3
- data/sig/mindee/product/resume/resume_v1_page.rbs +2 -2
- data/sig/mindee/product/resume/resume_v1_professional_experience.rbs +3 -3
- data/sig/mindee/product/resume/resume_v1_social_networks_url.rbs +3 -3
- data/sig/mindee/product/universal/universal.rbs +5 -5
- data/sig/mindee/product/universal/universal_document.rbs +1 -1
- data/sig/mindee/product/universal/universal_page.rbs +2 -2
- data/sig/mindee/product/universal/universal_prediction.rbs +5 -5
- data/sig/mindee/product/us/bank_check/bank_check_v1.rbs +1 -1
- data/sig/mindee/product/us/bank_check/bank_check_v1_document.rbs +1 -1
- data/sig/mindee/product/us/bank_check/bank_check_v1_page.rbs +2 -2
- data/sig/mindee/product/us/healthcare_card/healthcare_card_v1.rbs +1 -1
- data/sig/mindee/product/us/healthcare_card/healthcare_card_v1_copay.rbs +3 -3
- data/sig/mindee/product/us/healthcare_card/healthcare_card_v1_document.rbs +1 -1
- data/sig/mindee/product/us/healthcare_card/healthcare_card_v1_page.rbs +2 -2
- data/sig/mindee/product/us/us_mail/us_mail_v2.rbs +1 -1
- data/sig/mindee/product/us/us_mail/us_mail_v2_document.rbs +1 -1
- data/sig/mindee/product/us/us_mail/us_mail_v2_page.rbs +2 -2
- data/sig/mindee/product/us/us_mail/us_mail_v2_recipient_address.rbs +3 -3
- data/sig/mindee/product/us/us_mail/us_mail_v2_sender_address.rbs +2 -2
- data/sig/mindee/product/us/us_mail/us_mail_v3.rbs +1 -1
- data/sig/mindee/product/us/us_mail/us_mail_v3_document.rbs +1 -1
- data/sig/mindee/product/us/us_mail/us_mail_v3_page.rbs +2 -2
- data/sig/mindee/product/us/us_mail/us_mail_v3_recipient_address.rbs +3 -3
- data/sig/mindee/product/us/us_mail/us_mail_v3_sender_address.rbs +2 -2
- data/sig/mindee/product/us/w9/w9_v1.rbs +1 -1
- data/sig/mindee/product/us/w9/w9_v1_document.rbs +1 -1
- data/sig/mindee/product/us/w9/w9_v1_page.rbs +2 -2
- data/sig/mindee/version.rbs +2 -2
- metadata +61 -6
@@ -5,10 +5,10 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module BankStatement
|
7
7
|
class BankStatementV2Page < Parsing::Common::Page
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped]) -> void
|
9
9
|
end
|
10
10
|
class BankStatementV2PagePrediction < BankStatementV2Document
|
11
|
-
def initialize: (Hash[
|
11
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
12
12
|
def to_s: -> String
|
13
13
|
end
|
14
14
|
end
|
@@ -3,12 +3,12 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module BankStatement
|
5
5
|
class BankStatementV2Transaction < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def amount: -> Float
|
8
8
|
def date: -> String
|
9
9
|
def description: -> String
|
10
|
-
def printable_values: -> Hash[
|
11
|
-
def table_printable_values: -> Hash[
|
10
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
11
|
+
def table_printable_values: -> Hash[String | Symbol, untyped]
|
12
12
|
def to_table_line: -> String
|
13
13
|
def to_s: -> String
|
14
14
|
end
|
@@ -5,7 +5,7 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module CarteGrise
|
7
7
|
class CarteGriseV1Document < Parsing::Common::Prediction
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
9
9
|
def a: -> (Parsing::Standard::StringField)
|
10
10
|
def b: -> (Parsing::Standard::DateField)
|
11
11
|
def c1: -> (Parsing::Standard::StringField)
|
@@ -5,10 +5,10 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module CarteGrise
|
7
7
|
class CarteGriseV1Page < Parsing::Common::Page
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped]) -> void
|
9
9
|
end
|
10
10
|
class CarteGriseV1PagePrediction < CarteGriseV1Document
|
11
|
-
def initialize: (Hash[
|
11
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
12
12
|
def to_s: -> String
|
13
13
|
end
|
14
14
|
end
|
@@ -5,7 +5,7 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module EnergyBill
|
7
7
|
class EnergyBillV1Document < Parsing::Common::Prediction
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
9
9
|
def contract_id: -> (Parsing::Standard::StringField)
|
10
10
|
def delivery_point: -> (Parsing::Standard::StringField)
|
11
11
|
def due_date: -> (Parsing::Standard::DateField)
|
@@ -3,10 +3,10 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module EnergyBill
|
5
5
|
class EnergyBillV1EnergyConsumer < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def address: -> String
|
8
8
|
def name: -> String
|
9
|
-
def printable_values: -> Hash[
|
9
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
10
10
|
def to_s: -> String
|
11
11
|
end
|
12
12
|
end
|
@@ -3,10 +3,10 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module EnergyBill
|
5
5
|
class EnergyBillV1EnergySupplier < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def address: -> String
|
8
8
|
def name: -> String
|
9
|
-
def printable_values: -> Hash[
|
9
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
10
10
|
def to_s: -> String
|
11
11
|
end
|
12
12
|
end
|
@@ -3,7 +3,7 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module EnergyBill
|
5
5
|
class EnergyBillV1EnergyUsage < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def consumption: -> Float
|
8
8
|
def description: -> String
|
9
9
|
def end_date: -> String
|
@@ -12,8 +12,8 @@ module Mindee
|
|
12
12
|
def total: -> Float
|
13
13
|
def unit: -> String
|
14
14
|
def unit_price: -> Float
|
15
|
-
def printable_values: -> Hash[
|
16
|
-
def table_printable_values: -> Hash[
|
15
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
16
|
+
def table_printable_values: -> Hash[String | Symbol, untyped]
|
17
17
|
def to_table_line: -> String
|
18
18
|
def to_s: -> String
|
19
19
|
end
|
@@ -3,11 +3,11 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module EnergyBill
|
5
5
|
class EnergyBillV1MeterDetail < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def meter_number: -> String
|
8
8
|
def meter_type: -> String
|
9
9
|
def unit: -> String
|
10
|
-
def printable_values: -> Hash[
|
10
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
11
11
|
def to_s: -> String
|
12
12
|
end
|
13
13
|
end
|
@@ -5,10 +5,10 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module EnergyBill
|
7
7
|
class EnergyBillV1Page < Parsing::Common::Page
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped]) -> void
|
9
9
|
end
|
10
10
|
class EnergyBillV1PagePrediction < EnergyBillV1Document
|
11
|
-
def initialize: (Hash[
|
11
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
12
12
|
def to_s: -> String
|
13
13
|
end
|
14
14
|
end
|
@@ -3,15 +3,15 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module EnergyBill
|
5
5
|
class EnergyBillV1Subscription < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def description: -> String
|
8
8
|
def end_date: -> String
|
9
9
|
def start_date: -> String
|
10
10
|
def tax_rate: -> Float
|
11
11
|
def total: -> Float
|
12
12
|
def unit_price: -> Float
|
13
|
-
def printable_values: -> Hash[
|
14
|
-
def table_printable_values: -> Hash[
|
13
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
14
|
+
def table_printable_values: -> Hash[String | Symbol, untyped]
|
15
15
|
def to_table_line: -> String
|
16
16
|
def to_s: -> String
|
17
17
|
end
|
@@ -3,15 +3,15 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module EnergyBill
|
5
5
|
class EnergyBillV1TaxesAndContribution < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def description: -> String
|
8
8
|
def end_date: -> String
|
9
9
|
def start_date: -> String
|
10
10
|
def tax_rate: -> Float
|
11
11
|
def total: -> Float
|
12
12
|
def unit_price: -> Float
|
13
|
-
def printable_values: -> Hash[
|
14
|
-
def table_printable_values: -> Hash[
|
13
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
14
|
+
def table_printable_values: -> Hash[String | Symbol, untyped]
|
15
15
|
def to_table_line: -> String
|
16
16
|
def to_s: -> String
|
17
17
|
end
|
@@ -5,7 +5,7 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module HealthCard
|
7
7
|
class HealthCardV1Document < Parsing::Common::Prediction
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
9
9
|
def given_names: -> (Array[Parsing::Standard::StringField])
|
10
10
|
def issuance_date: -> (Parsing::Standard::DateField)
|
11
11
|
def social_security: -> (Parsing::Standard::StringField)
|
@@ -5,10 +5,10 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module HealthCard
|
7
7
|
class HealthCardV1Page < Parsing::Common::Page
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped]) -> void
|
9
9
|
end
|
10
10
|
class HealthCardV1PagePrediction < HealthCardV1Document
|
11
|
-
def initialize: (Hash[
|
11
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
12
12
|
def to_s: -> String
|
13
13
|
end
|
14
14
|
end
|
@@ -5,7 +5,7 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module IdCard
|
7
7
|
class IdCardV1Document < Parsing::Common::Prediction
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
9
9
|
def authority: -> (Parsing::Standard::StringField)
|
10
10
|
def birth_date: -> (Parsing::Standard::DateField)
|
11
11
|
def birth_place: -> (Parsing::Standard::StringField)
|
@@ -5,10 +5,10 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module IdCard
|
7
7
|
class IdCardV1Page < Parsing::Common::Page
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped]) -> void
|
9
9
|
end
|
10
10
|
class IdCardV1PagePrediction < IdCardV1Document
|
11
|
-
def initialize: (Hash[
|
11
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
12
12
|
def document_side: -> Parsing::Standard::ClassificationField
|
13
13
|
def to_s: -> String
|
14
14
|
end
|
@@ -5,7 +5,7 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module IdCard
|
7
7
|
class IdCardV2Document < Parsing::Common::Prediction
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
9
9
|
def alternate_name: -> (Parsing::Standard::StringField)
|
10
10
|
def authority: -> (Parsing::Standard::StringField)
|
11
11
|
def birth_date: -> (Parsing::Standard::DateField)
|
@@ -5,10 +5,10 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module IdCard
|
7
7
|
class IdCardV2Page < Parsing::Common::Page
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped]) -> void
|
9
9
|
end
|
10
10
|
class IdCardV2PagePrediction < IdCardV2Document
|
11
|
-
def initialize: (Hash[
|
11
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
12
12
|
def document_side: -> Parsing::Standard::ClassificationField
|
13
13
|
def document_type: -> Parsing::Standard::ClassificationField
|
14
14
|
def to_s: -> String
|
@@ -3,11 +3,11 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV2BankAccountDetail < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def bank_name: -> String
|
8
8
|
def iban: -> String
|
9
9
|
def swift: -> String
|
10
|
-
def printable_values: -> Hash[
|
10
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
11
11
|
def to_s: -> String
|
12
12
|
end
|
13
13
|
end
|
@@ -5,7 +5,7 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module Payslip
|
7
7
|
class PayslipV2Document < Parsing::Common::Prediction
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
9
9
|
def bank_account_details: -> (Product::FR::Payslip::PayslipV2BankAccountDetail)
|
10
10
|
def employee: -> (Product::FR::Payslip::PayslipV2Employee)
|
11
11
|
def employer: -> (Product::FR::Payslip::PayslipV2Employer)
|
@@ -3,7 +3,7 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV2Employee < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def address: -> String
|
8
8
|
def date_of_birth: -> String
|
9
9
|
def first_name: -> String
|
@@ -11,7 +11,7 @@ module Mindee
|
|
11
11
|
def phone_number: -> String
|
12
12
|
def registration_number: -> String
|
13
13
|
def social_security_number: -> String
|
14
|
-
def printable_values: -> Hash[
|
14
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
15
15
|
def to_s: -> String
|
16
16
|
end
|
17
17
|
end
|
@@ -3,7 +3,7 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV2Employer < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def address: -> String
|
8
8
|
def company_id: -> String
|
9
9
|
def company_site: -> String
|
@@ -11,7 +11,7 @@ module Mindee
|
|
11
11
|
def name: -> String
|
12
12
|
def phone_number: -> String
|
13
13
|
def urssaf_number: -> String
|
14
|
-
def printable_values: -> Hash[
|
14
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
15
15
|
def to_s: -> String
|
16
16
|
end
|
17
17
|
end
|
@@ -3,14 +3,14 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV2Employment < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def category: -> String
|
8
8
|
def coefficient: -> Float
|
9
9
|
def collective_agreement: -> String
|
10
10
|
def job_title: -> String
|
11
11
|
def position_level: -> String
|
12
12
|
def start_date: -> String
|
13
|
-
def printable_values: -> Hash[
|
13
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
14
14
|
def to_s: -> String
|
15
15
|
end
|
16
16
|
end
|
@@ -5,10 +5,10 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module Payslip
|
7
7
|
class PayslipV2Page < Parsing::Common::Page
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped]) -> void
|
9
9
|
end
|
10
10
|
class PayslipV2PagePrediction < PayslipV2Document
|
11
|
-
def initialize: (Hash[
|
11
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
12
12
|
def to_s: -> String
|
13
13
|
end
|
14
14
|
end
|
@@ -3,7 +3,7 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV2PayDetail < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def gross_salary: -> Float
|
8
8
|
def gross_salary_ytd: -> Float
|
9
9
|
def income_tax_rate: -> Float
|
@@ -14,7 +14,7 @@ module Mindee
|
|
14
14
|
def net_taxable_ytd: -> Float
|
15
15
|
def total_cost_employer: -> Float
|
16
16
|
def total_taxes_and_deductions: -> Float
|
17
|
-
def printable_values: -> Hash[
|
17
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
18
18
|
def to_s: -> String
|
19
19
|
end
|
20
20
|
end
|
@@ -3,13 +3,13 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV2PayPeriod < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def end_date: -> String
|
8
8
|
def month: -> String
|
9
9
|
def payment_date: -> String
|
10
10
|
def start_date: -> String
|
11
11
|
def year: -> String
|
12
|
-
def printable_values: -> Hash[
|
12
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
13
13
|
def to_s: -> String
|
14
14
|
end
|
15
15
|
end
|
@@ -3,11 +3,11 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV2Pto < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def accrued_this_period: -> Float
|
8
8
|
def balance_end_of_period: -> Float
|
9
9
|
def used_this_period: -> Float
|
10
|
-
def printable_values: -> Hash[
|
10
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
11
11
|
def to_s: -> String
|
12
12
|
end
|
13
13
|
end
|
@@ -3,13 +3,13 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV2SalaryDetail < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def amount: -> Float
|
8
8
|
def base: -> Float
|
9
9
|
def description: -> String
|
10
10
|
def rate: -> Float
|
11
|
-
def printable_values: -> Hash[
|
12
|
-
def table_printable_values: -> Hash[
|
11
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
12
|
+
def table_printable_values: -> Hash[String | Symbol, untyped]
|
13
13
|
def to_table_line: -> String
|
14
14
|
def to_s: -> String
|
15
15
|
end
|
@@ -3,11 +3,11 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV3BankAccountDetail < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def bank_name: -> String
|
8
8
|
def iban: -> String
|
9
9
|
def swift: -> String
|
10
|
-
def printable_values: -> Hash[
|
10
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
11
11
|
def to_s: -> String
|
12
12
|
end
|
13
13
|
end
|
@@ -5,7 +5,7 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module Payslip
|
7
7
|
class PayslipV3Document < Parsing::Common::Prediction
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
9
9
|
def bank_account_details: -> (Product::FR::Payslip::PayslipV3BankAccountDetail)
|
10
10
|
def employee: -> (Product::FR::Payslip::PayslipV3Employee)
|
11
11
|
def employer: -> (Product::FR::Payslip::PayslipV3Employer)
|
@@ -3,7 +3,7 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV3Employee < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def address: -> String
|
8
8
|
def date_of_birth: -> String
|
9
9
|
def first_name: -> String
|
@@ -11,7 +11,7 @@ module Mindee
|
|
11
11
|
def phone_number: -> String
|
12
12
|
def registration_number: -> String
|
13
13
|
def social_security_number: -> String
|
14
|
-
def printable_values: -> Hash[
|
14
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
15
15
|
def to_s: -> String
|
16
16
|
end
|
17
17
|
end
|
@@ -3,7 +3,7 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV3Employer < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def address: -> String
|
8
8
|
def company_id: -> String
|
9
9
|
def company_site: -> String
|
@@ -11,7 +11,7 @@ module Mindee
|
|
11
11
|
def name: -> String
|
12
12
|
def phone_number: -> String
|
13
13
|
def urssaf_number: -> String
|
14
|
-
def printable_values: -> Hash[
|
14
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
15
15
|
def to_s: -> String
|
16
16
|
end
|
17
17
|
end
|
@@ -3,7 +3,7 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV3Employment < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def category: -> String
|
8
8
|
def coefficient: -> String
|
9
9
|
def collective_agreement: -> String
|
@@ -11,7 +11,7 @@ module Mindee
|
|
11
11
|
def position_level: -> String
|
12
12
|
def seniority_date: -> String
|
13
13
|
def start_date: -> String
|
14
|
-
def printable_values: -> Hash[
|
14
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
15
15
|
def to_s: -> String
|
16
16
|
end
|
17
17
|
end
|
@@ -5,10 +5,10 @@ module Mindee
|
|
5
5
|
module FR
|
6
6
|
module Payslip
|
7
7
|
class PayslipV3Page < Parsing::Common::Page
|
8
|
-
def initialize: (Hash[
|
8
|
+
def initialize: (Hash[String | Symbol, untyped]) -> void
|
9
9
|
end
|
10
10
|
class PayslipV3PagePrediction < PayslipV3Document
|
11
|
-
def initialize: (Hash[
|
11
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
12
12
|
def to_s: -> String
|
13
13
|
end
|
14
14
|
end
|
@@ -3,14 +3,14 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV3PaidTimeOff < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def accrued: -> Float
|
8
8
|
def period: -> String
|
9
9
|
def pto_type: -> String
|
10
10
|
def remaining: -> Float
|
11
11
|
def used: -> Float
|
12
|
-
def printable_values: -> Hash[
|
13
|
-
def table_printable_values: -> Hash[
|
12
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
13
|
+
def table_printable_values: -> Hash[String | Symbol, untyped]
|
14
14
|
def to_table_line: -> String
|
15
15
|
def to_s: -> String
|
16
16
|
end
|
@@ -3,7 +3,7 @@ module Mindee
|
|
3
3
|
module FR
|
4
4
|
module Payslip
|
5
5
|
class PayslipV3PayDetail < Parsing::Standard::FeatureField
|
6
|
-
def initialize: (Hash[
|
6
|
+
def initialize: (Hash[String | Symbol, untyped], Integer?) -> void
|
7
7
|
def gross_salary: -> Float
|
8
8
|
def gross_salary_ytd: -> Float
|
9
9
|
def income_tax_rate: -> Float
|
@@ -14,7 +14,7 @@ module Mindee
|
|
14
14
|
def net_taxable_ytd: -> Float
|
15
15
|
def total_cost_employer: -> Float
|
16
16
|
def total_taxes_and_deductions: -> Float
|
17
|
-
def printable_values: -> Hash[
|
17
|
+
def printable_values: -> Hash[String | Symbol, untyped]
|
18
18
|
def to_s: -> String
|
19
19
|
end
|
20
20
|
end
|