factpulse 3.0.7__py3-none-any.whl → 3.0.23__py3-none-any.whl
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.
Potentially problematic release.
This version of factpulse might be problematic. Click here for more details.
- factpulse/__init__.py +289 -12
- factpulse/api/__init__.py +2 -0
- factpulse/api/afnorpdppa_api.py +16 -14
- factpulse/api/afnorpdppa_directory_service_api.py +1224 -309
- factpulse/api/afnorpdppa_flow_service_api.py +199 -68
- factpulse/api/chorus_pro_api.py +61 -8
- factpulse/api/document_conversion_api.py +54 -338
- factpulse/api/downloads_api.py +1171 -0
- factpulse/api/e_reporting_api.py +3254 -0
- factpulse/api/health_api.py +8 -1
- factpulse/api/invoice_processing_api.py +234 -37
- factpulse/api/pdfxml_verification_api.py +98 -19
- factpulse/api/user_api.py +5 -1
- factpulse/api_client.py +3 -2
- factpulse/configuration.py +10 -5
- factpulse/exceptions.py +2 -1
- factpulse/models/__init__.py +143 -6
- factpulse/models/accept_language.py +38 -0
- factpulse/models/acknowledgment_status.py +2 -1
- factpulse/models/additional_document.py +2 -1
- factpulse/models/afnor_acknowledgement.py +100 -0
- factpulse/models/afnor_acknowledgement_detail.py +105 -0
- factpulse/models/afnor_address_edit.py +111 -0
- factpulse/models/afnor_address_patch.py +141 -0
- factpulse/models/afnor_address_put.py +129 -0
- factpulse/models/afnor_address_read.py +113 -0
- factpulse/models/afnor_algorithm.py +41 -0
- factpulse/models/afnor_contains_operator.py +37 -0
- factpulse/models/afnor_create_directory_line_body.py +98 -0
- factpulse/models/afnor_create_directory_line_body_addressing_information.py +122 -0
- factpulse/models/afnor_create_directory_line_body_period.py +91 -0
- factpulse/models/afnor_create_routing_code_body.py +153 -0
- factpulse/models/afnor_credentials.py +2 -1
- factpulse/models/afnor_destination.py +15 -15
- factpulse/models/afnor_diffusion_status.py +38 -0
- factpulse/models/afnor_directory_line_field.py +42 -0
- factpulse/models/afnor_directory_line_payload_history_legal_unit_facility_routing_code.py +139 -0
- factpulse/models/afnor_directory_line_payload_history_legal_unit_facility_routing_code_platform.py +92 -0
- factpulse/models/afnor_directory_line_payload_history_legal_unit_facility_routing_code_routing_code.py +134 -0
- factpulse/models/afnor_directory_line_post201_response.py +94 -0
- factpulse/models/afnor_directory_line_search_post200_response.py +104 -0
- factpulse/models/afnor_entity_type.py +38 -0
- factpulse/models/afnor_error.py +97 -0
- factpulse/models/afnor_facility_administrative_status.py +38 -0
- factpulse/models/afnor_facility_nature.py +38 -0
- factpulse/models/afnor_facility_payload_history.py +140 -0
- factpulse/models/afnor_facility_payload_history_ule_b2g_additional_data.py +98 -0
- factpulse/models/afnor_facility_payload_included.py +134 -0
- factpulse/models/afnor_facility_type.py +38 -0
- factpulse/models/afnor_flow.py +129 -0
- factpulse/models/afnor_flow_ack_status.py +39 -0
- factpulse/models/afnor_flow_direction.py +38 -0
- factpulse/models/afnor_flow_info.py +112 -0
- factpulse/models/afnor_flow_profile.py +39 -0
- factpulse/models/afnor_flow_syntax.py +41 -0
- factpulse/models/afnor_flow_type.py +49 -0
- factpulse/models/afnor_full_flow_info.py +117 -0
- factpulse/models/afnor_health_check_response.py +2 -1
- factpulse/models/afnor_legal_unit_administrative_status.py +38 -0
- factpulse/models/afnor_legal_unit_payload_history.py +107 -0
- factpulse/models/afnor_legal_unit_payload_included.py +107 -0
- factpulse/models/afnor_legal_unit_payload_included_no_siren.py +95 -0
- factpulse/models/afnor_platform_status.py +38 -0
- factpulse/models/afnor_processing_rule.py +42 -0
- factpulse/models/afnor_reason_code.py +141 -0
- factpulse/models/afnor_reason_code_enum.py +51 -0
- factpulse/models/afnor_recipient_platform_type.py +38 -0
- factpulse/models/afnor_result.py +25 -3
- factpulse/models/afnor_routing_code_administrative_status.py +38 -0
- factpulse/models/afnor_routing_code_field.py +44 -0
- factpulse/models/afnor_routing_code_payload_history_legal_unit_facility.py +158 -0
- factpulse/models/afnor_routing_code_post201_response.py +113 -0
- factpulse/models/afnor_routing_code_search.py +122 -0
- factpulse/models/afnor_routing_code_search_filters.py +128 -0
- factpulse/models/afnor_routing_code_search_filters_administrative_status.py +92 -0
- factpulse/models/afnor_routing_code_search_filters_routing_code_name.py +102 -0
- factpulse/models/afnor_routing_code_search_filters_routing_identifier.py +102 -0
- factpulse/models/afnor_routing_code_search_post200_response.py +104 -0
- factpulse/models/afnor_routing_code_search_sorting_inner.py +92 -0
- factpulse/models/afnor_search_directory_line.py +109 -0
- factpulse/models/afnor_search_directory_line_filters.py +116 -0
- factpulse/models/afnor_search_directory_line_filters_addressing_identifier.py +92 -0
- factpulse/models/afnor_search_directory_line_filters_addressing_suffix.py +92 -0
- factpulse/models/afnor_search_directory_line_sorting_inner.py +92 -0
- factpulse/models/afnor_search_flow_content.py +104 -0
- factpulse/models/afnor_search_flow_filters.py +106 -0
- factpulse/models/afnor_search_flow_params.py +95 -0
- factpulse/models/afnor_search_siren.py +109 -0
- factpulse/models/afnor_search_siren_filters.py +110 -0
- factpulse/models/afnor_search_siren_filters_administrative_status.py +92 -0
- factpulse/models/afnor_search_siren_filters_business_name.py +92 -0
- factpulse/models/afnor_search_siren_filters_entity_type.py +92 -0
- factpulse/models/afnor_search_siren_filters_siren.py +102 -0
- factpulse/models/afnor_search_siren_sorting_inner.py +92 -0
- factpulse/models/afnor_search_siret.py +122 -0
- factpulse/models/afnor_search_siret_filters.py +140 -0
- factpulse/models/afnor_search_siret_filters_address_lines.py +92 -0
- factpulse/models/afnor_search_siret_filters_administrative_status.py +92 -0
- factpulse/models/afnor_search_siret_filters_country_subdivision.py +92 -0
- factpulse/models/afnor_search_siret_filters_facility_type.py +92 -0
- factpulse/models/afnor_search_siret_filters_locality.py +92 -0
- factpulse/models/afnor_search_siret_filters_name.py +92 -0
- factpulse/models/afnor_search_siret_filters_postal_code.py +102 -0
- factpulse/models/afnor_search_siret_filters_siret.py +102 -0
- factpulse/models/afnor_search_siret_sorting_inner.py +92 -0
- factpulse/models/afnor_siren_field.py +41 -0
- factpulse/models/afnor_siren_search_post200_response.py +104 -0
- factpulse/models/afnor_siret_field.py +50 -0
- factpulse/models/afnor_siret_search_post200_response.py +104 -0
- factpulse/models/afnor_sorting_order.py +38 -0
- factpulse/models/afnor_strict_operator.py +37 -0
- factpulse/models/afnor_update_patch_directory_line_body.py +89 -0
- factpulse/models/afnor_update_patch_routing_code_body.py +120 -0
- factpulse/models/afnor_update_put_routing_code_body.py +114 -0
- factpulse/models/afnor_webhook_callback_content.py +92 -0
- factpulse/models/aggregated_payment_input.py +106 -0
- factpulse/models/aggregated_transaction_input.py +136 -0
- factpulse/models/allowance_charge.py +9 -6
- factpulse/models/allowance_charge_reason_code.py +74 -0
- factpulse/models/allowance_reason_code.py +2 -1
- factpulse/models/allowance_total_amount.py +2 -1
- factpulse/models/amount.py +3 -2
- factpulse/models/amount1.py +140 -0
- factpulse/models/amount_due.py +2 -1
- factpulse/models/api_error.py +2 -1
- factpulse/models/api_profile.py +41 -0
- factpulse/models/async_task_status.py +2 -1
- factpulse/models/base_amount.py +2 -1
- factpulse/models/bounding_box_schema.py +2 -1
- factpulse/models/buyercountry.py +137 -0
- factpulse/models/celery_status.py +2 -1
- factpulse/models/certificate_info_response.py +2 -1
- factpulse/models/charge_total_amount.py +2 -1
- factpulse/models/{facture_electronique_rest_api_schemas_chorus_pro_chorus_pro_credentials.py → chorus_pro_credentials.py} +5 -4
- factpulse/models/chorus_pro_destination.py +2 -1
- factpulse/models/chorus_pro_result.py +2 -1
- factpulse/models/contact.py +2 -1
- factpulse/models/convert_resume_request.py +2 -1
- factpulse/models/convert_success_response.py +2 -1
- factpulse/models/convert_validation_failed_response.py +7 -6
- factpulse/models/country_code.py +206 -0
- factpulse/models/create_aggregated_report_request.py +170 -0
- factpulse/models/create_e_reporting_request.py +173 -0
- factpulse/models/currency.py +137 -0
- factpulse/models/currency_code.py +89 -0
- factpulse/models/delivery_party.py +2 -1
- factpulse/models/destination.py +2 -1
- factpulse/models/directory_line_include.py +40 -0
- factpulse/models/doc_type.py +40 -0
- factpulse/models/document_type_info.py +2 -1
- factpulse/models/e_reporting_flow_type.py +40 -0
- factpulse/models/{convert_error_response.py → e_reporting_validation_error.py} +15 -23
- factpulse/models/electronic_address.py +4 -3
- factpulse/models/enriched_invoice_info.py +8 -7
- factpulse/models/error_level.py +2 -1
- factpulse/models/error_source.py +2 -1
- factpulse/models/extraction_info.py +2 -1
- factpulse/models/factur_x_invoice.py +2 -1
- factpulse/models/factur_xpdf_info.py +2 -1
- factpulse/models/facture_electronique_rest_api_schemas_ereporting_invoice_type_code.py +41 -0
- factpulse/models/facture_electronique_rest_api_schemas_processing_chorus_pro_credentials.py +2 -1
- factpulse/models/field_status.py +2 -1
- factpulse/models/file_info.py +2 -1
- factpulse/models/files_info.py +2 -1
- factpulse/models/flow_direction.py +2 -1
- factpulse/models/flow_profile.py +2 -1
- factpulse/models/flow_summary.py +5 -4
- factpulse/models/flow_syntax.py +2 -1
- factpulse/models/flow_type.py +12 -3
- factpulse/models/generate_aggregated_report_response.py +100 -0
- factpulse/models/generate_certificate_request.py +2 -1
- factpulse/models/generate_certificate_response.py +2 -1
- factpulse/models/generate_e_reporting_response.py +96 -0
- factpulse/models/get_chorus_pro_id_request.py +5 -4
- factpulse/models/get_chorus_pro_id_response.py +2 -1
- factpulse/models/get_invoice_request.py +5 -4
- factpulse/models/get_invoice_response.py +4 -3
- factpulse/models/get_structure_request.py +5 -4
- factpulse/models/get_structure_response.py +4 -3
- factpulse/models/global_allowance_amount.py +2 -1
- factpulse/models/gross_unit_price.py +2 -1
- factpulse/models/http_validation_error.py +2 -1
- factpulse/models/incoming_invoice.py +8 -29
- factpulse/models/incoming_supplier.py +2 -1
- factpulse/models/invoice_format.py +2 -1
- factpulse/models/invoice_input.py +179 -0
- factpulse/models/invoice_line.py +18 -2
- factpulse/models/invoice_line_allowance_amount.py +2 -1
- factpulse/models/invoice_note.py +4 -3
- factpulse/models/invoice_payment_input.py +110 -0
- factpulse/models/invoice_references.py +2 -1
- factpulse/models/invoice_status.py +2 -1
- factpulse/models/invoice_totals.py +2 -1
- factpulse/models/invoice_totals_prepayment.py +2 -1
- factpulse/models/invoice_type_code.py +2 -1
- factpulse/models/invoice_type_code_output.py +52 -0
- factpulse/models/invoicing_framework.py +4 -3
- factpulse/models/invoicing_framework_code.py +2 -1
- factpulse/models/line_net_amount.py +2 -1
- factpulse/models/line_sub_type.py +39 -0
- factpulse/models/line_total_amount.py +2 -1
- factpulse/models/{validation_error_loc_inner.py → location_inner.py} +8 -7
- factpulse/models/mandatory_note_schema.py +2 -1
- factpulse/models/manual_rate.py +2 -1
- factpulse/models/manual_vat_rate.py +2 -1
- factpulse/models/missing_field.py +2 -1
- factpulse/models/operation_nature.py +2 -1
- factpulse/models/output_format.py +2 -1
- factpulse/models/page_dimensions_schema.py +2 -1
- factpulse/models/payee.py +2 -1
- factpulse/models/payment_amount_by_rate.py +98 -0
- factpulse/models/payment_card.py +2 -1
- factpulse/models/payment_means.py +2 -1
- factpulse/models/pdf_validation_result_api.py +2 -1
- factpulse/models/pdp_credentials.py +2 -1
- factpulse/models/percentage.py +2 -1
- factpulse/models/postal_address.py +2 -1
- factpulse/models/price_allowance_amount.py +2 -1
- factpulse/models/price_basis_quantity.py +2 -1
- factpulse/models/processing_options.py +4 -3
- factpulse/models/processing_rule.py +42 -0
- factpulse/models/product_characteristic.py +2 -1
- factpulse/models/product_classification.py +2 -1
- factpulse/models/quantity.py +2 -1
- factpulse/models/rate.py +140 -0
- factpulse/models/rate1.py +140 -0
- factpulse/models/recipient.py +2 -1
- factpulse/models/report_period.py +91 -0
- factpulse/models/report_sender.py +98 -0
- factpulse/models/rounding_amount.py +2 -1
- factpulse/models/routing_code_include.py +38 -0
- factpulse/models/schematron_validation_error.py +128 -0
- factpulse/models/scheme_id.py +9 -1
- factpulse/models/search_flow_request.py +2 -1
- factpulse/models/search_flow_response.py +2 -1
- factpulse/models/search_services_response.py +5 -4
- factpulse/models/search_structure_request.py +5 -4
- factpulse/models/search_structure_response.py +2 -1
- factpulse/models/sellercountry.py +137 -0
- factpulse/models/signature_info.py +2 -1
- factpulse/models/signature_info_api.py +2 -1
- factpulse/models/signature_parameters.py +2 -1
- factpulse/models/simplified_invoice_data.py +30 -3
- factpulse/models/siret_include.py +37 -0
- factpulse/models/structure_info.py +2 -1
- factpulse/models/structure_parameters.py +2 -1
- factpulse/models/structure_service.py +2 -1
- factpulse/models/submission_mode.py +2 -1
- factpulse/models/submit_aggregated_report_request.py +127 -0
- factpulse/models/submit_complete_invoice_request.py +2 -1
- factpulse/models/submit_complete_invoice_response.py +2 -1
- factpulse/models/submit_e_reporting_request.py +127 -0
- factpulse/models/submit_e_reporting_response.py +117 -0
- factpulse/models/submit_flow_request.py +2 -1
- factpulse/models/submit_flow_response.py +2 -1
- factpulse/models/submit_gross_amount.py +2 -1
- factpulse/models/submit_invoice_request.py +5 -4
- factpulse/models/submit_invoice_response.py +2 -1
- factpulse/models/submit_net_amount.py +2 -1
- factpulse/models/submit_vat_amount.py +2 -1
- factpulse/models/supplementary_attachment.py +7 -6
- factpulse/models/supplier.py +2 -1
- factpulse/models/task_response.py +2 -1
- factpulse/models/tax_breakdown_input.py +104 -0
- factpulse/models/tax_due_date_type.py +42 -0
- factpulse/models/tax_representative.py +2 -1
- factpulse/models/taxable_amount.py +2 -1
- factpulse/models/taxableamount.py +140 -0
- factpulse/models/taxamount.py +140 -0
- factpulse/models/taxamount1.py +140 -0
- factpulse/models/taxamount2.py +140 -0
- factpulse/models/taxexclusiveamount.py +140 -0
- factpulse/models/taxexclusiveamount1.py +140 -0
- factpulse/models/total_gross_amount.py +2 -1
- factpulse/models/total_net_amount.py +2 -1
- factpulse/models/total_vat_amount.py +2 -1
- factpulse/models/transaction_category.py +40 -0
- factpulse/models/transmission_type_code.py +38 -0
- factpulse/models/unit_net_price.py +2 -1
- factpulse/models/unit_of_measure.py +2 -1
- factpulse/models/validate_e_reporting_request.py +92 -0
- factpulse/models/validate_e_reporting_response.py +113 -0
- factpulse/models/validation_error.py +5 -4
- factpulse/models/validation_error_detail.py +2 -1
- factpulse/models/validation_error_response.py +2 -1
- factpulse/models/validation_info.py +5 -4
- factpulse/models/validation_success_response.py +2 -1
- factpulse/models/vat_accounting_code.py +2 -1
- factpulse/models/vat_amount.py +2 -1
- factpulse/models/vat_category.py +2 -1
- factpulse/models/vat_line.py +2 -1
- factpulse/models/vat_point_date_code.py +2 -1
- factpulse/models/vat_rate.py +2 -1
- factpulse/models/verification_success_response.py +2 -1
- factpulse/models/verified_field_schema.py +2 -1
- factpulse/rest.py +2 -1
- {factpulse-3.0.7.dist-info → factpulse-3.0.23.dist-info}/METADATA +42 -40
- factpulse-3.0.23.dist-info/RECORD +306 -0
- {factpulse-3.0.7.dist-info → factpulse-3.0.23.dist-info}/licenses/LICENSE +1 -1
- factpulse_helpers/client.py +2 -1
- factpulse/models/convert_pending_input_response.py +0 -114
- factpulse/models/factur_x_profile.py +0 -39
- factpulse-3.0.7.dist-info/RECORD +0 -168
- {factpulse-3.0.7.dist-info → factpulse-3.0.23.dist-info}/WHEEL +0 -0
- {factpulse-3.0.7.dist-info → factpulse-3.0.23.dist-info}/top_level.txt +0 -0
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
"""
|
|
4
|
-
FactPulse REST API
|
|
5
|
-
|
|
6
|
-
REST API for electronic invoicing in France: Factur-X, AFNOR PDP/PA, electronic signatures. ## 🎯 Main Features ### 📄 Factur-X Invoice Generation - **Formats**: XML only or PDF/A-3 with embedded XML - **Profiles**: MINIMUM, BASIC, EN16931, EXTENDED - **Standards**: EN 16931 (EU directive 2014/55), ISO 19005-3 (PDF/A-3), CII (UN/CEFACT) - **🆕 Simplified Format**: Generation from SIRET + auto-enrichment (Chorus Pro API + Business Search) ### ✅ Validation and Compliance - **XML Validation**: Schematron (45 to 210+ rules depending on profile) - **PDF Validation**: PDF/A-3, Factur-X XMP metadata, electronic signatures - **VeraPDF**: Strict PDF/A validation (146+ ISO 19005-3 rules) - **Asynchronous Processing**: Celery support for heavy validations (VeraPDF) ### 📡 AFNOR PDP/PA Integration (XP Z12-013) - **Flow Submission**: Send invoices to Partner Dematerialization Platforms - **Flow Search**: View submitted invoices - **Download**: Retrieve PDF/A-3 with XML - **Directory Service**: Company search (SIREN/SIRET) - **Multi-client**: Support for multiple PDP configs per user (stored credentials or zero-storage) ### ✍️ PDF Electronic Signature - **Standards**: PAdES-B-B, PAdES-B-T (RFC 3161 timestamping), PAdES-B-LT (long-term archival) - **eIDAS Levels**: SES (self-signed), AdES (commercial CA), QES (QTSP) - **Validation**: Cryptographic integrity and certificate verification - **Certificate Generation**: Self-signed X.509 certificates for testing ### 🔄 Asynchronous Processing - **Celery**: Asynchronous generation, validation and signing - **Polling**: Status tracking via `/tasks/{task_id}/status` - **No timeout**: Ideal for large files or heavy validations ## 🔒 Authentication All requests require a **JWT token** in the Authorization header: ``` Authorization: Bearer YOUR_JWT_TOKEN ``` ### How to obtain a JWT token? #### 🔑 Method 1: `/api/token/` API (Recommended) **URL:** `https://www.factpulse.fr/api/token/` This method is **recommended** for integration in your applications and CI/CD workflows. **Prerequisites:** Having set a password on your account **For users registered via email/password:** - You already have a password, use it directly **For users registered via OAuth (Google/GitHub):** - You must first set a password at: https://www.factpulse.fr/accounts/password/set/ - Once the password is created, you can use the API **Request example:** ```bash curl -X POST https://www.factpulse.fr/api/token/ \\ -H \"Content-Type: application/json\" \\ -d '{ \"username\": \"your_email@example.com\", \"password\": \"your_password\" }' ``` **Optional `client_uid` parameter:** To select credentials for a specific client (PA/PDP, Chorus Pro, signing certificates), add `client_uid`: ```bash curl -X POST https://www.factpulse.fr/api/token/ \\ -H \"Content-Type: application/json\" \\ -d '{ \"username\": \"your_email@example.com\", \"password\": \"your_password\", \"client_uid\": \"550e8400-e29b-41d4-a716-446655440000\" }' ``` The `client_uid` will be included in the JWT and allow the API to automatically use: - AFNOR/PDP credentials configured for this client - Chorus Pro credentials configured for this client - Electronic signature certificates configured for this client **Response:** ```json { \"access\": \"eyJ0eXAiOiJKV1QiLCJhbGc...\", // Access token (validity: 30 min) \"refresh\": \"eyJ0eXAiOiJKV1QiLCJhbGc...\" // Refresh token (validity: 7 days) } ``` **Advantages:** - ✅ Full automation (CI/CD, scripts) - ✅ Programmatic token management - ✅ Refresh token support for automatic access renewal - ✅ Easy integration in any language/tool #### 🖥️ Method 2: Dashboard Generation (Alternative) **URL:** https://www.factpulse.fr/dashboard/ This method is suitable for quick tests or occasional use via the graphical interface. **How it works:** - Log in to the dashboard - Use the \"Generate Test Token\" or \"Generate Production Token\" buttons - Works for **all** users (OAuth and email/password), without requiring a password **Token types:** - **Test Token**: 24h validity, 1000 calls/day quota (free) - **Production Token**: 7 days validity, quota based on your plan **Advantages:** - ✅ Quick for API testing - ✅ No password required - ✅ Simple visual interface **Disadvantages:** - ❌ Requires manual action - ❌ No refresh token - ❌ Less suited for automation ### 📚 Full Documentation For more information on authentication and API usage: https://www.factpulse.fr/documentation-api/
|
|
7
|
-
|
|
8
|
-
The version of the OpenAPI document: 1.0.0
|
|
9
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
-
|
|
11
|
-
Do not edit the class manually.
|
|
12
|
-
""" # noqa: E501
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
from __future__ import annotations
|
|
16
|
-
import json
|
|
17
|
-
from enum import Enum
|
|
18
|
-
from typing_extensions import Self
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
class FacturXProfile(str, Enum):
|
|
22
|
-
"""
|
|
23
|
-
Profil Factur-X pour la reponse API. Note: Simplifie par rapport a utils/facturx.FacturXProfile qui contient aussi les configurations XSLT. Celui-ci est pour l'API.
|
|
24
|
-
"""
|
|
25
|
-
|
|
26
|
-
"""
|
|
27
|
-
allowed enum values
|
|
28
|
-
"""
|
|
29
|
-
MINIMUM = 'MINIMUM'
|
|
30
|
-
BASIC = 'BASIC'
|
|
31
|
-
EN16931 = 'EN16931'
|
|
32
|
-
EXTENDED = 'EXTENDED'
|
|
33
|
-
|
|
34
|
-
@classmethod
|
|
35
|
-
def from_json(cls, json_str: str) -> Self:
|
|
36
|
-
"""Create an instance of FacturXProfile from a JSON string"""
|
|
37
|
-
return cls(json.loads(json_str))
|
|
38
|
-
|
|
39
|
-
|
factpulse-3.0.7.dist-info/RECORD
DELETED
|
@@ -1,168 +0,0 @@
|
|
|
1
|
-
factpulse/__init__.py,sha256=aPzbEBJUs9gCdL-IV55cq46wIYHqi3j6wHoKamRUkOU,22547
|
|
2
|
-
factpulse/api_client.py,sha256=eRdhmj4N75dHASiBsBKWw-bg_eQ8JZI_U5JjpMcquzU,32222
|
|
3
|
-
factpulse/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
factpulse/configuration.py,sha256=iWpfVEuxFl1PdM59L_ynjW4YsoyZKensPUwxhtaEHN4,22953
|
|
5
|
-
factpulse/exceptions.py,sha256=1juIo0sBUs8R1sKcQugPNKEx9Yo74FXNm8KhrEpOjvM,11001
|
|
6
|
-
factpulse/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
factpulse/rest.py,sha256=UzCWoBgsyvLH_-uV9cNYJBBU0nwKumDItZWKQ2Iacwo,14113
|
|
8
|
-
factpulse/api/__init__.py,sha256=ov23mFEVSUfC0-qJGFfj85kddEjo2oVTpblrwG7xoh4,629
|
|
9
|
-
factpulse/api/afnorpdppa_api.py,sha256=2fljfVdJutvT5L5_-oYetvXH-WT9YkR9mTtw8Zft2mI,37494
|
|
10
|
-
factpulse/api/afnorpdppa_directory_service_api.py,sha256=WtgEiEu7Wauo5rqRCUXQf5Lnt5_TIyXboq_1hMV5cl8,203845
|
|
11
|
-
factpulse/api/afnorpdppa_flow_service_api.py,sha256=mERbcQgpz3Ip-DD7FjfBDkM0EY1Kf0Znr056ZmNHbJo,45649
|
|
12
|
-
factpulse/api/chorus_pro_api.py,sha256=3A_XhFqwR9l4pB89OJNv5p4ydWcs586GdkQNe2T4Seo,204886
|
|
13
|
-
factpulse/api/document_conversion_api.py,sha256=nNIqC8bYEKWda_2I7oEZDekIdAsuIgF0BfeUyctzyAc,68420
|
|
14
|
-
factpulse/api/health_api.py,sha256=pslrFqGFwRssXOo1q_g8468rBHK0jGye1s6HdpWWUmo,24921
|
|
15
|
-
factpulse/api/invoice_processing_api.py,sha256=mWq4tHtOdcoW5cyjqV6vMWa7zYAQhAFXlL7cJ7HZ-DU,216504
|
|
16
|
-
factpulse/api/pdfxml_verification_api.py,sha256=bp1eg91Fi_65kp3vEKMUqlOjoBXd4s97yZr1ORrKNsk,88972
|
|
17
|
-
factpulse/api/user_api.py,sha256=OsED6foOfDD2I0Hoa_tc9ED9TsGS0A0VExapEEgTyk0,15450
|
|
18
|
-
factpulse/models/__init__.py,sha256=UuabqqxuILNFgxsRUFWOahPXaYv_6AWab2sqYrA2_P8,14216
|
|
19
|
-
factpulse/models/acknowledgment_status.py,sha256=xZJy7ll6zTPR-XoAhBEsKrFzKJWCP4ok_jfspEH-XZM,5257
|
|
20
|
-
factpulse/models/additional_document.py,sha256=tFs8JR5Mh0ZT65nzBNoF5Vrvbre9GDT3zehnmrUCHYE,8379
|
|
21
|
-
factpulse/models/afnor_credentials.py,sha256=xxkBec47HuU5FYZgfL7ZkaVoBvFpJqCIOk7K5MDp0Yk,8370
|
|
22
|
-
factpulse/models/afnor_destination.py,sha256=SLab8Qx-lmV3oPT6_YJoGtvBO8PaDDh_vXp1BUGME4o,8957
|
|
23
|
-
factpulse/models/afnor_health_check_response.py,sha256=CjCWKA7DqvOG6yigJgJ0kmFursjIwQmnwFN2VwA43Ls,7412
|
|
24
|
-
factpulse/models/afnor_result.py,sha256=7Pwu3RnH96NS5aQ0yAb3kVRNEtFkYZZpek-fYviQEX8,8054
|
|
25
|
-
factpulse/models/allowance_charge.py,sha256=UVc5Cdl0P6M6X20u_M-6ujJVbdhbTzl5yvejSlNSGBw,10400
|
|
26
|
-
factpulse/models/allowance_reason_code.py,sha256=Dh53uJ-Liuo9l8b8xBndzD4cs1sf-wETcWDOBdzhZP8,5681
|
|
27
|
-
factpulse/models/allowance_total_amount.py,sha256=7CODqgJ9CXhGkGroqoThAzsjVvIMv5Muogm4G6bw2Gs,9584
|
|
28
|
-
factpulse/models/amount.py,sha256=5mrck3OfwY86kNxkzWq8mPlpQmXNhsJdz1SKyDqu7oY,9406
|
|
29
|
-
factpulse/models/amount_due.py,sha256=N8FtIDZZqJoAqkTrCyBVS6B4oBSEZw31m5EyKHBmpKo,9451
|
|
30
|
-
factpulse/models/api_error.py,sha256=DiCBqKxksfbD5NTeoWolbPx9an6RgJ_CyaqxEk_nAu4,8157
|
|
31
|
-
factpulse/models/async_task_status.py,sha256=Scj2BxD1zavPWiFrPhE76qXAESYGFCsdWueWVVAuqn4,7738
|
|
32
|
-
factpulse/models/base_amount.py,sha256=MhtCdrr8NeQqH8Zm45KeeQapfXDjIPXuHKS1kobOfNQ,9544
|
|
33
|
-
factpulse/models/bounding_box_schema.py,sha256=C8CjGreTgjq7dQaPbHCvUugp0W9cbZXnTZ8n6iy7Iw4,8007
|
|
34
|
-
factpulse/models/celery_status.py,sha256=WAQjWEyhTGvrkHmbfWBDIEtTmeE11_Ey8CvZ-Qq6xh8,5641
|
|
35
|
-
factpulse/models/certificate_info_response.py,sha256=0tRDRJTrVlNokKCvJKbwNqUSjhVwWQEOgvN8flR3Hd0,8641
|
|
36
|
-
factpulse/models/charge_total_amount.py,sha256=mT4sCyrd4Rgctid7aOZ0pRYurpAwkS1Ido94uWEg6rc,9566
|
|
37
|
-
factpulse/models/chorus_pro_destination.py,sha256=_V5kleizacdNOt-oN-PRXx91N1ia9QVxs32SEkwy6XY,8241
|
|
38
|
-
factpulse/models/chorus_pro_result.py,sha256=SjyBRt1_N6N6tVZR4_MvJLoIPRfzNP-d-xWAwTjy0pI,7924
|
|
39
|
-
factpulse/models/contact.py,sha256=ZVVCL5yB5h5IJGKGBRqBLyXnVvLmYWpF6aySfsVZlKc,8179
|
|
40
|
-
factpulse/models/convert_error_response.py,sha256=Brb_kfNDpNwHncdsD9bQjDpGUYj2QxhgWJSiMchOE98,7962
|
|
41
|
-
factpulse/models/convert_pending_input_response.py,sha256=TIxAsNlhQWFFUE3gHYnd7RdLyzZGMF7C6cSgFboczs0,8852
|
|
42
|
-
factpulse/models/convert_resume_request.py,sha256=mI7psjvDjk3mQJU_Ci3HVvSiyVh_e4vGIXpkp1M95cU,7545
|
|
43
|
-
factpulse/models/convert_success_response.py,sha256=-Rv_nvS7Bx58ocJvoCn37xaLNKC3j4TsdfQp7IWPij4,10131
|
|
44
|
-
factpulse/models/convert_validation_failed_response.py,sha256=dSp7B2pLlwL7goBmkto14_BxteCWaW_OiVwI1w0ou_c,9647
|
|
45
|
-
factpulse/models/delivery_party.py,sha256=Ss_x1ju2_VEQicYw3KBdwEyQ855mwdjbBaUqMlNYP8U,8855
|
|
46
|
-
factpulse/models/destination.py,sha256=YdZ2zeCYEkb4vN3t-gTx2Bi9jHZ_oSU9dxSrMYQ67Nc,9978
|
|
47
|
-
factpulse/models/document_type_info.py,sha256=JlAtKt-lMjExGvg-lVH3rfxcK-J8hrT66JYw4IvOwJc,7292
|
|
48
|
-
factpulse/models/electronic_address.py,sha256=8KOOw6tx0UsLKZTXmt_Ig7FiqwvVVhr_4cWdjp7fGnY,7341
|
|
49
|
-
factpulse/models/enriched_invoice_info.py,sha256=GLaJH871wf070Je-jHrt1lCWkZwl_BQqrC0aMbw4868,9640
|
|
50
|
-
factpulse/models/error_level.py,sha256=Di6ewcuirjG583hT47YmSXK7osFmX7XQw6LFqiV2kQo,5206
|
|
51
|
-
factpulse/models/error_source.py,sha256=FyHCXoCqVqPsuyAd13l509SPNMsl5sgsRSgzDpBA3OY,5355
|
|
52
|
-
factpulse/models/extraction_info.py,sha256=XuQYJtfzeoGujUoW6hYs6q1L3jNrmloiE5SE5uG_4r8,7753
|
|
53
|
-
factpulse/models/factur_x_invoice.py,sha256=JMjR1xVXzzAyLeBkqEOV0MENyuNtE2fB_NdSvazVBDA,21147
|
|
54
|
-
factpulse/models/factur_x_profile.py,sha256=Cq9QICIl9dLZZw_my4-Cr0rHsgk7MvD_URc_LVhJqtk,5419
|
|
55
|
-
factpulse/models/factur_xpdf_info.py,sha256=2P4f42QTXp3ooe11zGzp0FzRnHvMuNS41BE1h5Hcv90,7361
|
|
56
|
-
factpulse/models/facture_electronique_rest_api_schemas_chorus_pro_chorus_pro_credentials.py,sha256=zEOfgzZ3cF58-z1GwmVs1VYFIwITBAFIC1NVKbWUtCU,8445
|
|
57
|
-
factpulse/models/facture_electronique_rest_api_schemas_processing_chorus_pro_credentials.py,sha256=uTbqXc3yMIyoEJ9pAHDDyTPfY7VQL5Z4NwxFamW5T7E,9229
|
|
58
|
-
factpulse/models/field_status.py,sha256=1pSVqDi1RxxsUcx3gNz5fhColWDjYOlpHIWvbI3r0XA,5348
|
|
59
|
-
factpulse/models/file_info.py,sha256=u60fVXEl2AUaQrcP_5hjaOM2cys17l4-aleMIIe9r8k,7458
|
|
60
|
-
factpulse/models/files_info.py,sha256=lGTaIuk4Ju56G2iY1gCmrijsXkIN7IiGpk17n8IHxws,7963
|
|
61
|
-
factpulse/models/flow_direction.py,sha256=DO8dOXLsljbJPVfJaksRRqz6NL2tyUQOkx8wdigubVQ,5203
|
|
62
|
-
factpulse/models/flow_profile.py,sha256=TybZe0j3Bh1ZSAQPeHEDdjs9ybY8RjJeI5P9LTzxt4A,5268
|
|
63
|
-
factpulse/models/flow_summary.py,sha256=9U3sewLJy6Wk7a4nCmYX15Fnykd6gzHzY2k8ddFTwKE,9129
|
|
64
|
-
factpulse/models/flow_syntax.py,sha256=h-is1HlgDdmy-7G-aSonTSL1Q8ejQVKI5D9cFQpgrQ8,5283
|
|
65
|
-
factpulse/models/flow_type.py,sha256=qns07GcV6vuJJZIZIPYsU_zr8HYtOn-VBwSK68wqBS8,5365
|
|
66
|
-
factpulse/models/generate_certificate_request.py,sha256=ZVXMmJR0wZ5QvpHIu3MbsalCoR48D_-5MHA2PdfXN1I,9917
|
|
67
|
-
factpulse/models/generate_certificate_response.py,sha256=hCgus2FLy0DmEs0B-_jCXdjHokrGwmzXJ41VQjWgosc,8889
|
|
68
|
-
factpulse/models/get_chorus_pro_id_request.py,sha256=0_FCrolKwRk30fFCvVKKygTPy5tRRQxF2A2OMv1w_U8,8183
|
|
69
|
-
factpulse/models/get_chorus_pro_id_response.py,sha256=EsjpBRSo3L0dxyesE5rppL-0NL4enHkB1C9nEgr06IA,7806
|
|
70
|
-
factpulse/models/get_invoice_request.py,sha256=C124VzNkbTW9NDFr6tkJsoDTzlnUY0vnv1GAxTcBdaM,7931
|
|
71
|
-
factpulse/models/get_invoice_response.py,sha256=3doNVK99y428zHqTUgZTr7e2oIz6Aphe2A7Fz_K5vyo,10384
|
|
72
|
-
factpulse/models/get_structure_request.py,sha256=RY2_NrHCh7SVQXIHWmXYOTmrQPZ4L9JDd7yB46njKIc,8175
|
|
73
|
-
factpulse/models/get_structure_response.py,sha256=coGHlE2DuQeiMOQOt9eGr8dhy8oazHSCpiChMreKSJ0,10145
|
|
74
|
-
factpulse/models/global_allowance_amount.py,sha256=CPMGUB7HcKPVmsVIEXc0e20O7gai_Bz57yEkmS-l3pQ,9576
|
|
75
|
-
factpulse/models/gross_unit_price.py,sha256=giAf9R5czk7QYzfuaE-mzCfUB5Q5qEaGD3X7BNQ23ZY,9552
|
|
76
|
-
factpulse/models/http_validation_error.py,sha256=d63cZDRiYz-Yz_4H9LtGybU5cjBJ_zgb4SrwKcjQHt4,7462
|
|
77
|
-
factpulse/models/incoming_invoice.py,sha256=2aE1YLWyWJEQfEOk4s1HDguzAWrnpIjB4cSvvDFxTXA,14135
|
|
78
|
-
factpulse/models/incoming_supplier.py,sha256=RMffz32PAAbFSm3DLO3QE0SmbcFA82zoahCiELE1_tE,10223
|
|
79
|
-
factpulse/models/invoice_format.py,sha256=L2hW50hiMQO_3H3KQGMop8n6om5HO-18SdJBoLIABGU,5263
|
|
80
|
-
factpulse/models/invoice_line.py,sha256=tLefsuVB631wHjXGDh0l4Hui5SIbyiHTZxUj6P0Fxv4,23416
|
|
81
|
-
factpulse/models/invoice_line_allowance_amount.py,sha256=KwMWFZJRFzkjvyH-ge3xWq1s9vg67lfL1_cJlY7r5yk,9679
|
|
82
|
-
factpulse/models/invoice_note.py,sha256=V4OEkmEa0Agm2vMgholeZzXuV5q-cLepskn930OMdhY,7440
|
|
83
|
-
factpulse/models/invoice_references.py,sha256=I_jmAJBLvvlNx5ltq_2J_uKh8f1Cl6nnf1WT7oTH7Q4,13556
|
|
84
|
-
factpulse/models/invoice_status.py,sha256=35UGjrfYzZzZ6qj3krvDra9tfGrgl4qrRSex4myAGFY,7500
|
|
85
|
-
factpulse/models/invoice_totals.py,sha256=sUbOmJP32Ezd0DruNMMD8rNZugv20mg9QfsX0OaqqeE,13409
|
|
86
|
-
factpulse/models/invoice_totals_prepayment.py,sha256=jilvAFxmG6sU85nBVmJ9tkK_KgdgYS5zD3aSqSWpstU,9628
|
|
87
|
-
factpulse/models/invoice_type_code.py,sha256=RzftlOanLZnJZ3iKTpw0Yd7acJtwYWGQe8ruKBv9Ws8,6842
|
|
88
|
-
factpulse/models/invoicing_framework.py,sha256=3ZkqyjGPrpmvNVAcfVvT1Ts__dl3X14WQ57-5R66CsQ,8990
|
|
89
|
-
factpulse/models/invoicing_framework_code.py,sha256=1jFkGgjkfRATj2F43ZFDpp3iGAbBQBfa5EwZ91HDIIU,5469
|
|
90
|
-
factpulse/models/line_net_amount.py,sha256=4I268KgANjGoNhtMLJZ8rLQgHMwba7BVNeSfefSPkKw,9574
|
|
91
|
-
factpulse/models/line_total_amount.py,sha256=z29AJdPWyZMvyfZntQKoG8KodGwA0qjP1aAZS5FvDUs,9555
|
|
92
|
-
factpulse/models/mandatory_note_schema.py,sha256=leKtBkC5_tyzyiAjgYP3HRvymPy5evkTLQVF5s8DnMg,9047
|
|
93
|
-
factpulse/models/manual_rate.py,sha256=DI1PJ7cKgXHmEtkNHn_nYkiEVSTc8CoVEvktncHpJKw,9486
|
|
94
|
-
factpulse/models/manual_vat_rate.py,sha256=LjSeJw9WQ68cqc2eyyZqbE4PmN8Vf5QBUFJNrmMTYUM,9508
|
|
95
|
-
factpulse/models/missing_field.py,sha256=vBZejF3kixK1BLZQM63XrwjVZeTwcKh0Vfm9WXX908U,8200
|
|
96
|
-
factpulse/models/operation_nature.py,sha256=u7FnCSYVxHZg5GpLWIxiBISUczVFgTr0bPWFYXjip2w,5787
|
|
97
|
-
factpulse/models/output_format.py,sha256=fskPOWR86n7OQYx0FA74qTT0bGC5pxOTgjd8SfnKQC0,5225
|
|
98
|
-
factpulse/models/page_dimensions_schema.py,sha256=vtni8LP5dwTXSZlpFOeUvb2OG_ihJe2KYlOjZY-tmng,7190
|
|
99
|
-
factpulse/models/payee.py,sha256=whZFlf7Mm57aY4BofqsJUOtG_8lBzjb0cW7mxE_Qo8s,11373
|
|
100
|
-
factpulse/models/payment_card.py,sha256=FYZz5XNf1jPpKObXlZvxW2NdBW6uWeVQFC8C_4Xhqdk,7608
|
|
101
|
-
factpulse/models/payment_means.py,sha256=5_h1qI99LiMWUA5g3NfHG0OU_ZF9ns4wIA3ZJupibUY,5325
|
|
102
|
-
factpulse/models/pdf_validation_result_api.py,sha256=q_Ff8crvnedCt6Whtxct4gnXtKUyXtEj-euPHcQVtVc,13273
|
|
103
|
-
factpulse/models/pdp_credentials.py,sha256=gtlpRL0Fgb-YsBXWldQPpCOsxVYMOvVYER96KN3pyC4,8231
|
|
104
|
-
factpulse/models/percentage.py,sha256=dCQBrZuvbYLL0oSdFIpM4AgQSVo6NOv_yArV9s-WBd4,9539
|
|
105
|
-
factpulse/models/postal_address.py,sha256=3E1r99Ap_aMZhryNNXNshJNycZqbQxNdRn2_9cT7f98,9432
|
|
106
|
-
factpulse/models/price_allowance_amount.py,sha256=YsfYats-20rQ7in9lON9vpM3O2JvFtg7AiiQjXT-n7o,9571
|
|
107
|
-
factpulse/models/price_basis_quantity.py,sha256=0OxrApolj39POZ8qx9rsskGdeVMyfInkjpE6lb5zA9U,9573
|
|
108
|
-
factpulse/models/processing_options.py,sha256=X9fdcnxG2rPuQr1dP1rXmMvPnjsMdGR-4dIGnioJR-w,8086
|
|
109
|
-
factpulse/models/product_characteristic.py,sha256=pKHzcY16PmBnGxqaOFofnfU60Bg8npJRgRHw_e3Pd5I,7194
|
|
110
|
-
factpulse/models/product_classification.py,sha256=-wK9l4XeVD6FtzMGSfoeVEISZ6RO1_xo5nS__UR7VGY,7811
|
|
111
|
-
factpulse/models/quantity.py,sha256=Du1Xs_y4sDCd4WEAPgSCpgHFRu34pfI6SQXIG_wPEYU,9441
|
|
112
|
-
factpulse/models/recipient.py,sha256=8O2Ee43h5kMgerHMD-5ycKPq0rNOeS6WI3jJqPiowZg,11314
|
|
113
|
-
factpulse/models/rounding_amount.py,sha256=MHQ4TWFr-fmynHjdqxdnOSPH8xeLpBOB5Na6xb7IZkM,9545
|
|
114
|
-
factpulse/models/scheme_id.py,sha256=igtHE3rcALkS7yLLXAPg00LPjZD26Ffkc3IKJLVqBpE,6026
|
|
115
|
-
factpulse/models/search_flow_request.py,sha256=RpU_1pgV58YZbPzfpFCrIQcbXCOnJgdDe1c4MCOmXPE,10329
|
|
116
|
-
factpulse/models/search_flow_response.py,sha256=mQwM2vP29IS8-ePKge61KTR2pz8epYxoutXh1_V3RCs,7831
|
|
117
|
-
factpulse/models/search_services_response.py,sha256=Znm-tFJ2Z3J6FGznzhP7jLvbEGQUL7n57IIjxBQr4jA,7899
|
|
118
|
-
factpulse/models/search_structure_request.py,sha256=F1EAgsUc8o_rIVbbney0NdmVvyjkLQLXgu6gDcK144k,9445
|
|
119
|
-
factpulse/models/search_structure_response.py,sha256=NmiQ60acf-MSlhrjDmFVumUnIpvJmHdZe6dbWUdsG7E,8000
|
|
120
|
-
factpulse/models/signature_info.py,sha256=qvLwDDMS3VeFPG0vDeZeVhmeopzUscQRfHRbtUnZmIM,7631
|
|
121
|
-
factpulse/models/signature_info_api.py,sha256=6djXmJnT642Wr_uj2iBzJDACy_JYKm-KRVLtPLbFZx8,8728
|
|
122
|
-
factpulse/models/signature_parameters.py,sha256=aF5H1PhFnrjnNkOQPUTHpkQbgFZxAxqLmH1TQztnEfo,10264
|
|
123
|
-
factpulse/models/simplified_invoice_data.py,sha256=Pgznub81c4-L5zXu9jboiKMX5TYXjZ9L4rOcAaYyyak,9353
|
|
124
|
-
factpulse/models/structure_info.py,sha256=X9dWu1bUy0ENjyxnQgz8M2A71SZz2TKG1d1xujaI53c,7759
|
|
125
|
-
factpulse/models/structure_parameters.py,sha256=M3aHVyqfe6rd9ykso3i_SnzusbLeK-ZI8c7qpZa6u0I,7892
|
|
126
|
-
factpulse/models/structure_service.py,sha256=8lj6U3vVovZyg30MKa45KCgfoBJp3dOalwOH8IFQWZM,7496
|
|
127
|
-
factpulse/models/submission_mode.py,sha256=OITc_hA0ArDl6NeV0MzEWYjiNfg10vQrQeHVjaoWavM,5312
|
|
128
|
-
factpulse/models/submit_complete_invoice_request.py,sha256=ucCtSynLggIdJPNYHneEit8HixroRKHq-L_4u81cpLY,9316
|
|
129
|
-
factpulse/models/submit_complete_invoice_response.py,sha256=8Z5k_kjIKiapTKGAFxPT4RoqVjohFwQROpWpTw4o66I,10931
|
|
130
|
-
factpulse/models/submit_flow_request.py,sha256=vjbd_sRX9LUEclgiviU3GFY8Ryjgmymc5yXAooh4KcE,9232
|
|
131
|
-
factpulse/models/submit_flow_response.py,sha256=cPHRWjV_MEFk5mtYDLk2jvN8k6KO0ZdOhw4JuMyvXuQ,8238
|
|
132
|
-
factpulse/models/submit_gross_amount.py,sha256=09nt1Qjcf-qARZlYpxtXf2-pN2KPK-MYv-3OZ1tzO5M,9436
|
|
133
|
-
factpulse/models/submit_invoice_request.py,sha256=uIg5OU6sFGuQLR5GrNKIm4HtKTdSjDaGVZt4Scap0O4,13017
|
|
134
|
-
factpulse/models/submit_invoice_response.py,sha256=oxiQNRRcdbaF21vDAql5EMTDnOCMeIj0_Z2HJlXJYrg,8065
|
|
135
|
-
factpulse/models/submit_net_amount.py,sha256=jTIQ8iefiiwy7XHfEGb3pCSSpn3JQ_HNivhJfUX-wR4,9424
|
|
136
|
-
factpulse/models/submit_vat_amount.py,sha256=4SR_0N7glj8bIevzEg8f5eRSmkrOdAvaB3pzdtV9ksU,9418
|
|
137
|
-
factpulse/models/supplementary_attachment.py,sha256=uDfpQnGmovo_1RM3cXuj4gJZhDOyrnNf6kBfus8Xhv4,7406
|
|
138
|
-
factpulse/models/supplier.py,sha256=TchY6MFLuLQ8F0TayCIgwH2o2MWPT4kDmMhE9RH7yUI,14312
|
|
139
|
-
factpulse/models/task_response.py,sha256=PMPkU-HvEEy_qJpVOB_rOjmgK-wi2gEou1IzCYrGM6Y,7055
|
|
140
|
-
factpulse/models/tax_representative.py,sha256=pizslzTj20mFMrF-S7yQ6YMUX7UQ6jMCXHrl3jnEbjo,7784
|
|
141
|
-
factpulse/models/taxable_amount.py,sha256=cVETGoZWf0nXXvRzezS50DeD1fcf731tRn9KWt5E9sA,9476
|
|
142
|
-
factpulse/models/total_gross_amount.py,sha256=sxO9R60zCxXn09vapu__Soss8huFZobbpEbMCDTPWg0,9493
|
|
143
|
-
factpulse/models/total_net_amount.py,sha256=UL2yuUsZMr8t187W4n29KeCfPn0bms6iHo5oY4NVEIs,9486
|
|
144
|
-
factpulse/models/total_vat_amount.py,sha256=X-_X0y2nxIYCnUtjcsS-GrJ5tHAZsz8ROScJ3koEhd0,9478
|
|
145
|
-
factpulse/models/unit_net_price.py,sha256=gGw0qynAzBD7ZdJrbnSnbOsd_Aba_GPc2KPUdQKe58k,9437
|
|
146
|
-
factpulse/models/unit_of_measure.py,sha256=UqiQfq32-sHBv9jZJBQ-W8D6cLOQJJ61fCMoSxT9mTQ,5332
|
|
147
|
-
factpulse/models/validation_error.py,sha256=HqQpB6EXDLBOYSeyGQ-vHHEiQ8vulf6fNj53bHUUvcQ,7554
|
|
148
|
-
factpulse/models/validation_error_detail.py,sha256=HqU5a_YppZKaU977v8__zV9ftSJ6cMwu_TDzWelwvpo,8167
|
|
149
|
-
factpulse/models/validation_error_loc_inner.py,sha256=e2_k_BNmeNl_JavYKrvPTDoW4BqeiMyIMNReB1uAfKw,9348
|
|
150
|
-
factpulse/models/validation_error_response.py,sha256=JdvpXOtfF8TphLuyT9vfzjuo7bxwolNYQxtCb7S6A9o,7059
|
|
151
|
-
factpulse/models/validation_info.py,sha256=gGnDTnEf3sIfBEL1iftH0JO9nApwxgv22ixJsQIf7oA,8413
|
|
152
|
-
factpulse/models/validation_success_response.py,sha256=2JJcIkkAtbpRIUWKe7MKOAgDMIXtgzhFKSNsR_jPzvM,7066
|
|
153
|
-
factpulse/models/vat_accounting_code.py,sha256=B5MhIAvbK63mtyX0jOmTNBKNl5xIEeguLhOdv3Prc_8,5332
|
|
154
|
-
factpulse/models/vat_amount.py,sha256=X6y_TN9al9PdorhJ8TzPgsxLwEvY96C6a_kk0AwCMsE,9452
|
|
155
|
-
factpulse/models/vat_category.py,sha256=_HenJMtwtXmhg5JUEdXya1L97vjizNQy5-5gLOQLdns,5706
|
|
156
|
-
factpulse/models/vat_line.py,sha256=sGoEZLKT320zieGkDXMUEBw1oEGNvh-tr92On5ffeuM,10055
|
|
157
|
-
factpulse/models/vat_point_date_code.py,sha256=BULFejhDKHXPUsiDJUjXPBLGTXgcNEpqW8frg27C8cw,5306
|
|
158
|
-
factpulse/models/vat_rate.py,sha256=xsUqjMBfnI6NjDDIKqYRCxOBX7ED9NwLMJsSLUGJGbg,9527
|
|
159
|
-
factpulse/models/verification_success_response.py,sha256=g5S0Ola2LshGkHC8Tw01LCT3kJYP_jIaxb0u1epMpMw,11179
|
|
160
|
-
factpulse/models/verified_field_schema.py,sha256=z3SFdgogb9pe2uH81lw-5rWKeOcWbM8DYFCWORfr8lc,9568
|
|
161
|
-
factpulse-3.0.7.dist-info/licenses/LICENSE,sha256=TOREZ0FjfXTO1zqJjqfiuyBoj79tmdfVAJuWN_KV-i8,1066
|
|
162
|
-
factpulse_helpers/__init__.py,sha256=sNudk_JnH-cY-ckqYGGw7GoCY3Esqu6KSIW474rhWAg,2533
|
|
163
|
-
factpulse_helpers/client.py,sha256=np4ZfuOBqATBll60CV4JsdZnxY1o9WGKKbtWe-GQyZM,80207
|
|
164
|
-
factpulse_helpers/exceptions.py,sha256=xraFc_rLUALO1kGrl1US01zIg5hKatfxxqgcE5aNY0g,9083
|
|
165
|
-
factpulse-3.0.7.dist-info/METADATA,sha256=yAPUjyv3LDTvVaWPgOw2xqmBBRcuHjnPr1qTUHxUSh4,6930
|
|
166
|
-
factpulse-3.0.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
167
|
-
factpulse-3.0.7.dist-info/top_level.txt,sha256=gG17jwZIkNxBJeHxdyLCU6kkoGMr2Ir2metnQ7eT2xY,28
|
|
168
|
-
factpulse-3.0.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|