factpulse 2.0.37__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 +542 -197
- factpulse/api/__init__.py +7 -4
- factpulse/api/afnorpdppa_api.py +49 -47
- factpulse/api/afnorpdppa_directory_service_api.py +1225 -310
- factpulse/api/afnorpdppa_flow_service_api.py +212 -81
- factpulse/api/chorus_pro_api.py +271 -218
- factpulse/api/document_conversion_api.py +1222 -0
- factpulse/api/downloads_api.py +1171 -0
- factpulse/api/e_reporting_api.py +3254 -0
- factpulse/api/{sant_api.py → health_api.py} +29 -22
- factpulse/api/invoice_processing_api.py +3634 -0
- factpulse/api/{vrification_pdfxml_api.py → pdfxml_verification_api.py} +331 -252
- factpulse/api/{utilisateur_api.py → user_api.py} +21 -17
- factpulse/api_client.py +4 -3
- factpulse/configuration.py +11 -6
- factpulse/exceptions.py +3 -2
- factpulse/models/__init__.py +265 -95
- factpulse/models/accept_language.py +38 -0
- factpulse/models/acknowledgment_status.py +39 -0
- factpulse/models/additional_document.py +116 -0
- 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 +107 -0
- factpulse/models/afnor_destination.py +127 -0
- 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 +92 -0
- 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 +127 -0
- 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 +150 -0
- factpulse/models/allowance_charge_reason_code.py +74 -0
- factpulse/models/allowance_reason_code.py +43 -0
- factpulse/models/allowance_total_amount.py +146 -0
- factpulse/models/amount.py +140 -0
- factpulse/models/amount1.py +140 -0
- factpulse/models/amount_due.py +140 -0
- factpulse/models/api_error.py +6 -5
- factpulse/models/api_profile.py +41 -0
- factpulse/models/async_task_status.py +98 -0
- factpulse/models/base_amount.py +146 -0
- factpulse/models/bounding_box_schema.py +11 -10
- factpulse/models/buyercountry.py +137 -0
- factpulse/models/celery_status.py +41 -0
- factpulse/models/certificate_info_response.py +25 -24
- factpulse/models/charge_total_amount.py +146 -0
- factpulse/models/chorus_pro_credentials.py +14 -13
- factpulse/models/chorus_pro_destination.py +109 -0
- factpulse/models/chorus_pro_result.py +102 -0
- factpulse/models/contact.py +114 -0
- factpulse/models/convert_resume_request.py +88 -0
- factpulse/models/convert_success_response.py +127 -0
- factpulse/models/convert_validation_failed_response.py +121 -0
- 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 +122 -0
- factpulse/models/destination.py +28 -27
- factpulse/models/directory_line_include.py +40 -0
- factpulse/models/doc_type.py +40 -0
- factpulse/models/document_type_info.py +92 -0
- factpulse/models/e_reporting_flow_type.py +40 -0
- factpulse/models/e_reporting_validation_error.py +97 -0
- factpulse/models/electronic_address.py +91 -0
- factpulse/models/enriched_invoice_info.py +134 -0
- factpulse/models/error_level.py +3 -2
- factpulse/models/error_source.py +3 -2
- factpulse/models/extraction_info.py +94 -0
- factpulse/models/factur_x_invoice.py +321 -0
- factpulse/models/factur_xpdf_info.py +92 -0
- 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 +116 -0
- factpulse/models/field_status.py +41 -0
- factpulse/models/file_info.py +95 -0
- factpulse/models/files_info.py +107 -0
- factpulse/models/flow_direction.py +38 -0
- factpulse/models/flow_profile.py +39 -0
- factpulse/models/flow_summary.py +132 -0
- factpulse/models/flow_syntax.py +41 -0
- factpulse/models/flow_type.py +49 -0
- factpulse/models/generate_aggregated_report_response.py +100 -0
- factpulse/models/generate_certificate_request.py +27 -26
- factpulse/models/generate_certificate_response.py +16 -15
- factpulse/models/generate_e_reporting_response.py +96 -0
- factpulse/models/get_chorus_pro_id_request.py +101 -0
- factpulse/models/get_chorus_pro_id_response.py +99 -0
- factpulse/models/get_invoice_request.py +99 -0
- factpulse/models/get_invoice_response.py +143 -0
- factpulse/models/get_structure_request.py +101 -0
- factpulse/models/get_structure_response.py +143 -0
- factpulse/models/global_allowance_amount.py +140 -0
- factpulse/models/gross_unit_price.py +146 -0
- factpulse/models/http_validation_error.py +3 -2
- factpulse/models/incoming_invoice.py +175 -0
- factpulse/models/incoming_supplier.py +145 -0
- factpulse/models/invoice_format.py +39 -0
- factpulse/models/invoice_input.py +179 -0
- factpulse/models/invoice_line.py +370 -0
- factpulse/models/invoice_line_allowance_amount.py +146 -0
- factpulse/models/invoice_note.py +95 -0
- factpulse/models/invoice_payment_input.py +110 -0
- factpulse/models/invoice_references.py +195 -0
- factpulse/models/invoice_status.py +97 -0
- factpulse/models/invoice_totals.py +178 -0
- factpulse/models/invoice_totals_prepayment.py +146 -0
- factpulse/models/invoice_type_code.py +52 -0
- factpulse/models/invoice_type_code_output.py +52 -0
- factpulse/models/invoicing_framework.py +111 -0
- factpulse/models/invoicing_framework_code.py +40 -0
- factpulse/models/line_net_amount.py +146 -0
- factpulse/models/line_sub_type.py +39 -0
- factpulse/models/line_total_amount.py +146 -0
- factpulse/models/location_inner.py +139 -0
- factpulse/models/mandatory_note_schema.py +125 -0
- factpulse/models/manual_rate.py +140 -0
- factpulse/models/manual_vat_rate.py +140 -0
- factpulse/models/missing_field.py +108 -0
- factpulse/models/operation_nature.py +50 -0
- factpulse/models/output_format.py +38 -0
- factpulse/models/page_dimensions_schema.py +90 -0
- factpulse/models/payee.py +169 -0
- factpulse/models/payment_amount_by_rate.py +98 -0
- factpulse/models/payment_card.py +100 -0
- factpulse/models/payment_means.py +42 -0
- factpulse/models/pdf_validation_result_api.py +170 -0
- factpulse/models/pdp_credentials.py +16 -15
- factpulse/models/percentage.py +146 -0
- factpulse/models/postal_address.py +135 -0
- factpulse/models/price_allowance_amount.py +146 -0
- factpulse/models/price_basis_quantity.py +146 -0
- factpulse/models/processing_options.py +95 -0
- factpulse/models/processing_rule.py +42 -0
- factpulse/models/product_characteristic.py +90 -0
- factpulse/models/product_classification.py +102 -0
- factpulse/models/quantity.py +140 -0
- factpulse/models/rate.py +140 -0
- factpulse/models/rate1.py +140 -0
- factpulse/models/recipient.py +168 -0
- factpulse/models/report_period.py +91 -0
- factpulse/models/report_sender.py +98 -0
- factpulse/models/rounding_amount.py +146 -0
- factpulse/models/routing_code_include.py +38 -0
- factpulse/models/schematron_validation_error.py +128 -0
- factpulse/models/scheme_id.py +18 -4
- factpulse/models/search_flow_request.py +144 -0
- factpulse/models/search_flow_response.py +102 -0
- factpulse/models/search_services_response.py +102 -0
- factpulse/models/search_structure_request.py +120 -0
- factpulse/models/search_structure_response.py +102 -0
- factpulse/models/sellercountry.py +137 -0
- factpulse/models/signature_info.py +7 -6
- factpulse/models/signature_info_api.py +123 -0
- factpulse/models/signature_parameters.py +134 -0
- factpulse/models/simplified_invoice_data.py +151 -0
- factpulse/models/siret_include.py +37 -0
- factpulse/models/structure_info.py +15 -14
- factpulse/models/structure_parameters.py +92 -0
- factpulse/models/structure_service.py +94 -0
- factpulse/models/submission_mode.py +39 -0
- factpulse/models/submit_aggregated_report_request.py +127 -0
- factpulse/models/submit_complete_invoice_request.py +117 -0
- factpulse/models/submit_complete_invoice_response.py +146 -0
- factpulse/models/submit_e_reporting_request.py +127 -0
- factpulse/models/submit_e_reporting_response.py +117 -0
- factpulse/models/submit_flow_request.py +124 -0
- factpulse/models/submit_flow_response.py +110 -0
- factpulse/models/submit_gross_amount.py +140 -0
- factpulse/models/submit_invoice_request.py +177 -0
- factpulse/models/submit_invoice_response.py +104 -0
- factpulse/models/submit_net_amount.py +140 -0
- factpulse/models/submit_vat_amount.py +140 -0
- factpulse/models/supplementary_attachment.py +96 -0
- factpulse/models/supplier.py +226 -0
- factpulse/models/task_response.py +88 -0
- factpulse/models/tax_breakdown_input.py +104 -0
- factpulse/models/tax_due_date_type.py +42 -0
- factpulse/models/tax_representative.py +96 -0
- factpulse/models/taxable_amount.py +140 -0
- 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 +140 -0
- factpulse/models/total_net_amount.py +140 -0
- factpulse/models/total_vat_amount.py +140 -0
- factpulse/models/transaction_category.py +40 -0
- factpulse/models/transmission_type_code.py +38 -0
- factpulse/models/unit_net_price.py +140 -0
- factpulse/models/unit_of_measure.py +42 -0
- factpulse/models/validate_e_reporting_request.py +92 -0
- factpulse/models/validate_e_reporting_response.py +113 -0
- factpulse/models/validation_error.py +6 -5
- factpulse/models/validation_error_detail.py +7 -6
- factpulse/models/validation_error_response.py +88 -0
- factpulse/models/validation_info.py +106 -0
- factpulse/models/validation_success_response.py +88 -0
- factpulse/models/vat_accounting_code.py +40 -0
- factpulse/models/vat_amount.py +140 -0
- factpulse/models/vat_category.py +45 -0
- factpulse/models/vat_line.py +141 -0
- factpulse/models/vat_point_date_code.py +39 -0
- factpulse/models/vat_rate.py +146 -0
- factpulse/models/verification_success_response.py +136 -0
- factpulse/models/verified_field_schema.py +130 -0
- factpulse/rest.py +3 -2
- factpulse-3.0.23.dist-info/METADATA +294 -0
- factpulse-3.0.23.dist-info/RECORD +306 -0
- {factpulse-2.0.37.dist-info → factpulse-3.0.23.dist-info}/licenses/LICENSE +1 -1
- factpulse_helpers/__init__.py +34 -34
- factpulse_helpers/client.py +1020 -795
- factpulse_helpers/exceptions.py +68 -68
- factpulse/api/traitement_facture_api.py +0 -3437
- factpulse/models/adresse_electronique.py +0 -90
- factpulse/models/adresse_postale.py +0 -120
- factpulse/models/cadre_de_facturation.py +0 -110
- factpulse/models/categorie_tva.py +0 -44
- factpulse/models/champ_verifie_schema.py +0 -129
- factpulse/models/code_cadre_facturation.py +0 -39
- factpulse/models/code_raison_reduction.py +0 -42
- factpulse/models/consulter_facture_request.py +0 -98
- factpulse/models/consulter_facture_response.py +0 -142
- factpulse/models/consulter_structure_request.py +0 -100
- factpulse/models/consulter_structure_response.py +0 -142
- factpulse/models/credentials_afnor.py +0 -106
- factpulse/models/credentials_chorus_pro.py +0 -115
- factpulse/models/destinataire.py +0 -130
- factpulse/models/destination_afnor.py +0 -127
- factpulse/models/destination_chorus_pro.py +0 -108
- factpulse/models/dimension_page_schema.py +0 -89
- factpulse/models/direction_flux.py +0 -37
- factpulse/models/donnees_facture_simplifiees.py +0 -124
- factpulse/models/facture_enrichie_info.py +0 -133
- factpulse/models/facture_entrante.py +0 -196
- factpulse/models/facture_factur_x.py +0 -183
- factpulse/models/flux_resume.py +0 -131
- factpulse/models/format_facture.py +0 -38
- factpulse/models/format_sortie.py +0 -37
- factpulse/models/fournisseur.py +0 -153
- factpulse/models/fournisseur_entrant.py +0 -144
- factpulse/models/information_signature_api.py +0 -122
- factpulse/models/ligne_de_poste.py +0 -183
- factpulse/models/ligne_de_poste_montant_remise_ht.py +0 -145
- factpulse/models/ligne_de_poste_taux_tva_manuel.py +0 -145
- factpulse/models/ligne_de_tva.py +0 -132
- factpulse/models/mode_depot.py +0 -38
- factpulse/models/mode_paiement.py +0 -41
- factpulse/models/montant_a_payer.py +0 -139
- factpulse/models/montant_base_ht.py +0 -139
- factpulse/models/montant_ht_total.py +0 -139
- factpulse/models/montant_remise_globale_ttc.py +0 -139
- factpulse/models/montant_total.py +0 -133
- factpulse/models/montant_total_acompte.py +0 -145
- factpulse/models/montant_total_ligne_ht.py +0 -139
- factpulse/models/montant_ttc_total.py +0 -139
- factpulse/models/montant_tva.py +0 -139
- factpulse/models/montant_tva_ligne.py +0 -139
- factpulse/models/montant_tva_total.py +0 -139
- factpulse/models/montant_unitaire_ht.py +0 -139
- factpulse/models/nature_operation.py +0 -49
- factpulse/models/note.py +0 -94
- factpulse/models/note_obligatoire_schema.py +0 -124
- factpulse/models/obtenir_id_chorus_pro_request.py +0 -100
- factpulse/models/obtenir_id_chorus_pro_response.py +0 -98
- factpulse/models/options_processing.py +0 -94
- factpulse/models/parametres_signature.py +0 -133
- factpulse/models/parametres_structure.py +0 -91
- factpulse/models/pdf_factur_x_info.py +0 -91
- factpulse/models/piece_jointe_complementaire.py +0 -95
- factpulse/models/profil_api.py +0 -39
- factpulse/models/profil_flux.py +0 -38
- factpulse/models/quantite.py +0 -139
- factpulse/models/rechercher_services_response.py +0 -101
- factpulse/models/rechercher_structure_request.py +0 -119
- factpulse/models/rechercher_structure_response.py +0 -101
- factpulse/models/references.py +0 -124
- factpulse/models/reponse_healthcheck_afnor.py +0 -91
- factpulse/models/reponse_recherche_flux.py +0 -101
- factpulse/models/reponse_soumission_flux.py +0 -109
- factpulse/models/reponse_tache.py +0 -87
- factpulse/models/reponse_validation_erreur.py +0 -87
- factpulse/models/reponse_validation_succes.py +0 -87
- factpulse/models/reponse_verification_succes.py +0 -135
- factpulse/models/requete_recherche_flux.py +0 -143
- factpulse/models/requete_soumission_flux.py +0 -123
- factpulse/models/resultat_afnor.py +0 -105
- factpulse/models/resultat_chorus_pro.py +0 -101
- factpulse/models/resultat_validation_pdfapi.py +0 -169
- factpulse/models/service_structure.py +0 -93
- factpulse/models/soumettre_facture_complete_request.py +0 -116
- factpulse/models/soumettre_facture_complete_response.py +0 -145
- factpulse/models/soumettre_facture_request.py +0 -176
- factpulse/models/soumettre_facture_response.py +0 -103
- factpulse/models/statut_acquittement.py +0 -38
- factpulse/models/statut_celery.py +0 -40
- factpulse/models/statut_champ_api.py +0 -40
- factpulse/models/statut_facture.py +0 -96
- factpulse/models/statut_tache.py +0 -97
- factpulse/models/syntaxe_flux.py +0 -40
- factpulse/models/tauxmanuel.py +0 -139
- factpulse/models/type_document.py +0 -40
- factpulse/models/type_facture.py +0 -37
- factpulse/models/type_flux.py +0 -40
- factpulse/models/type_tva.py +0 -39
- factpulse/models/unite.py +0 -41
- factpulse/models/validation_error_loc_inner.py +0 -138
- factpulse-2.0.37.dist-info/METADATA +0 -292
- factpulse-2.0.37.dist-info/RECORD +0 -134
- {factpulse-2.0.37.dist-info → factpulse-3.0.23.dist-info}/WHEEL +0 -0
- {factpulse-2.0.37.dist-info → factpulse-3.0.23.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
factpulse/__init__.py,sha256=pprL-eikcEwCPgu8sgx5ixzsrJWYyOdM6hDKGIh7Uns,42301
|
|
2
|
+
factpulse/api_client.py,sha256=A2HG6dzz61g5UDAMyNlSlkV1mTXtmSNkRYlgEf8uTfE,32237
|
|
3
|
+
factpulse/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
+
factpulse/configuration.py,sha256=gqVjrUMeGE4SZKxayuw2fHVT9ck_Q7TMcEBI5i0KIdU,23108
|
|
5
|
+
factpulse/exceptions.py,sha256=Ye03SRL2Z3rNOyzqVXrWPUyuITng0TOo4-jksnG3cDM,11015
|
|
6
|
+
factpulse/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
factpulse/rest.py,sha256=Y63NFzyftnmUgfXD68VRNI6jTfBD18HMuR2414uB3QU,14127
|
|
8
|
+
factpulse/api/__init__.py,sha256=SeFMuIE5Vi3MHjF6MSYiDj5QGvorxwat7jKktNd1kfg,738
|
|
9
|
+
factpulse/api/afnorpdppa_api.py,sha256=Kuf_Y_WpwNw_Fopb7gR8Hq6Iej9PFVsomjsUp-8odGc,38185
|
|
10
|
+
factpulse/api/afnorpdppa_directory_service_api.py,sha256=zbsKhyQriPG1KWscYKK-StAejU8GEY3pQ5mOnxuiFAE,252880
|
|
11
|
+
factpulse/api/afnorpdppa_flow_service_api.py,sha256=pQJRc-7J8UgsybPYJw4yBT86tqkvrvLCMdIqOcdO0bI,53204
|
|
12
|
+
factpulse/api/chorus_pro_api.py,sha256=C1xrHmfXIdmOi75CjdpkRM0Hz_Ww1kwzqqt9dsU4ASc,207827
|
|
13
|
+
factpulse/api/document_conversion_api.py,sha256=eW6OaRisCqqYBcGECMzmgRHrN0lBK8shnf_MAZKmavI,57037
|
|
14
|
+
factpulse/api/downloads_api.py,sha256=qLMaBG6kK9oTnzsQs0hGKwRqzSNjYaoT8CZGPP9YxPs,52851
|
|
15
|
+
factpulse/api/e_reporting_api.py,sha256=m1Kr3FxO7jXtB-2hL0jVgPga7YPauT6UjTODePEaEgU,143831
|
|
16
|
+
factpulse/api/health_api.py,sha256=Iy53tWqAs7mAfVnR1y7DT1bMNPWpZYCdFD_ZkwsHxg0,25085
|
|
17
|
+
factpulse/api/invoice_processing_api.py,sha256=_QDnlrMAPjZ9bYMI6iYrRGyk3GYebIsNukXNjQZgXLg,231368
|
|
18
|
+
factpulse/api/pdfxml_verification_api.py,sha256=MWwjbaUadCCKZsDsVdgyuOZl0wWGnegbah28lfEF2As,96714
|
|
19
|
+
factpulse/api/user_api.py,sha256=r9uHhLlIjG04O3AdFPl7E061D6UpQhnV3qzlEMPFEsM,15539
|
|
20
|
+
factpulse/models/__init__.py,sha256=PYeSbwuSmNhe9ccrrkHalErsnWHKH1p4KPmoEXu9Kd0,25504
|
|
21
|
+
factpulse/models/accept_language.py,sha256=iY3APIGthR2QGSlA5gC3UTsMl3Cu8MK3poIxcCtegzo,5238
|
|
22
|
+
factpulse/models/acknowledgment_status.py,sha256=WQfGOozQjmF9aCJo_sqmG8SOrYHSCLMOY1ZJ2obh6Io,5271
|
|
23
|
+
factpulse/models/additional_document.py,sha256=kNAp9VfnFobt4D2TepuqlxYbnh0XeG-hrLhBjdUjhmA,8393
|
|
24
|
+
factpulse/models/afnor_acknowledgement.py,sha256=EkLIHzTPcCflaAKxMTxyXJffHi1OzweO0zMlfpc13Oo,7768
|
|
25
|
+
factpulse/models/afnor_acknowledgement_detail.py,sha256=8rovKKqDpHdbYPHpJedqf4OP5J0qD4efpuWiIE0EdDI,7971
|
|
26
|
+
factpulse/models/afnor_address_edit.py,sha256=MlAg3C040mxQU-syb-Eea96OJxn3v50IZ6PXgQqhDOE,9213
|
|
27
|
+
factpulse/models/afnor_address_patch.py,sha256=dJZHtELV1JcHwxeVkEoFmF4AL2rcT1fWg5TwHP7hIlw,10263
|
|
28
|
+
factpulse/models/afnor_address_put.py,sha256=bM_7jmNnHso5foc1vfiSZhAc8Xa6e1v460BGKfKqQC0,9871
|
|
29
|
+
factpulse/models/afnor_address_read.py,sha256=PxMTT0lqRGtvWVlYf_Jlm-cHQmhC2o_AjZSJ4ahMVew,9486
|
|
30
|
+
factpulse/models/afnor_algorithm.py,sha256=Ken3z0t6dySt12IjAEbPaBj4J9DLI-GoPW04BiSxTOk,5308
|
|
31
|
+
factpulse/models/afnor_contains_operator.py,sha256=YT702ErVAL5Z17xFuKN5a9ln7--Is2qeXs5Qgslp0Sw,5250
|
|
32
|
+
factpulse/models/afnor_create_directory_line_body.py,sha256=KL3Y_O4kW1ZVSKmIieGf6uAQEpdIkRRuXjQ_0wr8Uyc,8122
|
|
33
|
+
factpulse/models/afnor_create_directory_line_body_addressing_information.py,sha256=Z7T0431DCmFCaQu5yeuwv3Nwo4NXSa4M8Gd2fC9iPI0,9023
|
|
34
|
+
factpulse/models/afnor_create_directory_line_body_period.py,sha256=vDtqdHFwk0RYxXz46RlLORnNevja6l5SV5qVzBgl-mk,7333
|
|
35
|
+
factpulse/models/afnor_create_routing_code_body.py,sha256=t7n4aersAtMEDe8vdtWA7e1An2YIv9PtVhLbQl_Jl4k,11332
|
|
36
|
+
factpulse/models/afnor_credentials.py,sha256=pVA73xivJ2PuyrEWx6vsHiz7sRF3leVjFXXVrFKu72c,8384
|
|
37
|
+
factpulse/models/afnor_destination.py,sha256=7RNJNSQ1wol8iLVm3pYamdnODgBzJPQb1ZmzsNvB3eM,9112
|
|
38
|
+
factpulse/models/afnor_diffusion_status.py,sha256=8pYBLac9XhT6QZmBjVRokobTJWdvCWV1zeJt_ALCrgQ,5279
|
|
39
|
+
factpulse/models/afnor_directory_line_field.py,sha256=zmSawXNmIVAA9ekDc-rJhb1ZgfuLIxU86vUsx5SBZ3I,5435
|
|
40
|
+
factpulse/models/afnor_directory_line_payload_history_legal_unit_facility_routing_code.py,sha256=LkQ6qnmf3pmJc_LqMXjzhxeUi54w-oNlMEF_JLV35xI,11081
|
|
41
|
+
factpulse/models/afnor_directory_line_payload_history_legal_unit_facility_routing_code_platform.py,sha256=ycbxmY22m02ybBlyD-Hx3YZ6OvYAbMyGv4diI6WuK5I,7604
|
|
42
|
+
factpulse/models/afnor_directory_line_payload_history_legal_unit_facility_routing_code_routing_code.py,sha256=06wpCR0nWGT-yYrRgIksf4Q3CV4Icp7uvZgB93dte_4,10418
|
|
43
|
+
factpulse/models/afnor_directory_line_post201_response.py,sha256=0C2OlBitZiNastGvpoosxkje51QiH0QSIfhf8n87S3U,7726
|
|
44
|
+
factpulse/models/afnor_directory_line_search_post200_response.py,sha256=egoxl5Io5hDBQCzqJUTj83uwddHkKL5_mR38x4o4ww4,8434
|
|
45
|
+
factpulse/models/afnor_entity_type.py,sha256=phBLGYM7MIJTxYKUAO0BXL-MquehH1cMkivd-KOcW5o,5271
|
|
46
|
+
factpulse/models/afnor_error.py,sha256=dMjY8OHhv3SDLPXJXQYPV9lJH_tqpLGW5m05lgkAkTg,7602
|
|
47
|
+
factpulse/models/afnor_facility_administrative_status.py,sha256=5r43M74vq9jllaLw97h_XwRPSb2RZPAJpXmvwN3Nd-c,5292
|
|
48
|
+
factpulse/models/afnor_facility_nature.py,sha256=lOPvhB7Z3TPACF2hlyrGWT69ROUWHwEId_Z0SOlc170,5266
|
|
49
|
+
factpulse/models/afnor_facility_payload_history.py,sha256=3W0iGVHFqvLWM1QUPnz7_9_j4o3jx47uuFeRRWxwA7Q,10524
|
|
50
|
+
factpulse/models/afnor_facility_payload_history_ule_b2g_additional_data.py,sha256=0faX8LsEp_G8boXw5Q9H4zZwWCNBwCHpX4E-FEpPDv8,9642
|
|
51
|
+
factpulse/models/afnor_facility_payload_included.py,sha256=dEN9BEMzsgEfwMZ40oZxB3FkIHIXDz5V88aVwVvC5Xk,9989
|
|
52
|
+
factpulse/models/afnor_facility_type.py,sha256=gS6Kzhe2ixgUQwjJw64TXA5wPbMhP3TUcggmcM6JJjc,5317
|
|
53
|
+
factpulse/models/afnor_flow.py,sha256=qKyNXELFmLC_3RFmua8u2D1VSPnDUOyHZaD2DMR7gpo,10345
|
|
54
|
+
factpulse/models/afnor_flow_ack_status.py,sha256=PO7bFZV_2_7dLKiuoPGXh8LCsN1HH21SoUVe-lKOMqs,5456
|
|
55
|
+
factpulse/models/afnor_flow_direction.py,sha256=98i6y4KjvzghNylsSPkj1-oRaXWtQfBcp-QEc1YJxbc,5333
|
|
56
|
+
factpulse/models/afnor_flow_info.py,sha256=RX512dRGXGw7luO5H5bBtFYRmUS7yZjNqr8Iij2bZ2U,8798
|
|
57
|
+
factpulse/models/afnor_flow_profile.py,sha256=2Lk_E8dHe7P8Y_GjSmqjtVDnofKuu37UtAeym-BwL1c,5284
|
|
58
|
+
factpulse/models/afnor_flow_syntax.py,sha256=ROmODgmS8Q4-2ZsC2JQpsZdKXy24F-yXk_Q6NBgfnDE,5321
|
|
59
|
+
factpulse/models/afnor_flow_type.py,sha256=WFV1eJxrZmldz-yGYxXQJqFnAmeoMy3QncCHobyg7QY,7158
|
|
60
|
+
factpulse/models/afnor_full_flow_info.py,sha256=yqgUds92jDE5bEXlkPHblBCYJg5fLjE4fbBmMpFG_Xs,9181
|
|
61
|
+
factpulse/models/afnor_health_check_response.py,sha256=hJjoNjoTaoKfyWd7VwwMLeKDNPiv1kK_MgUjXvdRrRs,7426
|
|
62
|
+
factpulse/models/afnor_legal_unit_administrative_status.py,sha256=3fZGTePOjFqzp7sMugWqylc6HuvORaYpLMDyMP9lrqc,5317
|
|
63
|
+
factpulse/models/afnor_legal_unit_payload_history.py,sha256=Te0hcRxx6h8PdiSZ5yMWO4uA9dP_w9JFVFWuW7VFd9c,8264
|
|
64
|
+
factpulse/models/afnor_legal_unit_payload_included.py,sha256=SK_eMtIeZkCbkzUJ3dYgmCCo6RA23eI6sxPXFFric7w,8268
|
|
65
|
+
factpulse/models/afnor_legal_unit_payload_included_no_siren.py,sha256=U0U_QALaZznNjJjjAMcShYkavUKArEUUG9EG_y9P5xo,7771
|
|
66
|
+
factpulse/models/afnor_platform_status.py,sha256=2Hl5TLBlvqKaR98uleLmwBacpFHISbaM9hIyFsWvKFc,5256
|
|
67
|
+
factpulse/models/afnor_processing_rule.py,sha256=jw4i-uIjRhQg0PgiGAGriQbbVRoysHk1iYrp0mJ-SjY,5617
|
|
68
|
+
factpulse/models/afnor_reason_code.py,sha256=9Fr7DUQ8ROp-ZUSE_pmWA0Fi1wv5AbFC0DggFZUWFwQ,9886
|
|
69
|
+
factpulse/models/afnor_reason_code_enum.py,sha256=8_3KkhBVY54fl0YtW8djIzVMv0Jp9mcwuEfP2Skl6qA,7003
|
|
70
|
+
factpulse/models/afnor_recipient_platform_type.py,sha256=jFttMuqWu16XLJn5DTakvzih4pzdEimUTdeJNlPYNG0,5271
|
|
71
|
+
factpulse/models/afnor_result.py,sha256=k3fuEe0_-HrF0hQwEoQyMTLot2drxdO75aqp0MERQ54,9284
|
|
72
|
+
factpulse/models/afnor_routing_code_administrative_status.py,sha256=0xvRCZG15-Ntp8VD55HssPbOpk5RQFIY7NV2owucHIA,5309
|
|
73
|
+
factpulse/models/afnor_routing_code_field.py,sha256=dBa1YjfFotHmON6g183sqC1bYgQy7NriZURpM8ZWJFw,5546
|
|
74
|
+
factpulse/models/afnor_routing_code_payload_history_legal_unit_facility.py,sha256=oau3HQJSZjHLHOG1fsifcTsA2c6r-bqzIz3HobrP2UE,11820
|
|
75
|
+
factpulse/models/afnor_routing_code_post201_response.py,sha256=d27W7Nbq-IyfmJ2SbsSulIoKa2WwXoIZKBuCd3khN54,8419
|
|
76
|
+
factpulse/models/afnor_routing_code_search.py,sha256=CC-cZFsZpJiyCimZH6mjBerFz3rCSl1hi7A2Hhh72-I,9176
|
|
77
|
+
factpulse/models/afnor_routing_code_search_filters.py,sha256=lrWYRVZ_mi88Xa-IfalDwskbfCGiKS5RT2uUIOoK2Mg,10947
|
|
78
|
+
factpulse/models/afnor_routing_code_search_filters_administrative_status.py,sha256=Nl8PO4PmxuHZOesos8XEJZwZggKl3wuIwEqdiYvkJSM,7398
|
|
79
|
+
factpulse/models/afnor_routing_code_search_filters_routing_code_name.py,sha256=9p8OSFRMVA4Ou5AZ-8scziOSbbM-sWK6LvH3VW8r3yQ,7755
|
|
80
|
+
factpulse/models/afnor_routing_code_search_filters_routing_identifier.py,sha256=QcYXKquJs3zYj7yWxt7ZewdHj_ehu-wus-a3vWZ44mg,7776
|
|
81
|
+
factpulse/models/afnor_routing_code_search_post200_response.py,sha256=nd8374fuF3Ah_sZPiFZCjavHs9rtCLW4SI_OwmA07jk,8364
|
|
82
|
+
factpulse/models/afnor_routing_code_search_sorting_inner.py,sha256=_3oYnHuUtJoVyz6e6YDPyLw74qIzXNn3wFxoYSdNhCg,7380
|
|
83
|
+
factpulse/models/afnor_search_directory_line.py,sha256=hQ3VoZ2RfkFfUgKL1qO3RMa-5jFA23VH-Vs7oqyz970,8738
|
|
84
|
+
factpulse/models/afnor_search_directory_line_filters.py,sha256=1XtURchgCC3oc09VkP3cD0fvv201ullds0dezpkhONc,9841
|
|
85
|
+
factpulse/models/afnor_search_directory_line_filters_addressing_identifier.py,sha256=EvGR1qwYiGVbRgW2qgMph2cFW5QoU51yMFY2Sv6GzC8,7441
|
|
86
|
+
factpulse/models/afnor_search_directory_line_filters_addressing_suffix.py,sha256=58kQGlhQgfFXHx6-xesVA-Nf66ga7cYKC7uRX40Nzy0,7460
|
|
87
|
+
factpulse/models/afnor_search_directory_line_sorting_inner.py,sha256=IDMeIcxReY-2Kgg0SFEfTuThfvH_EEqZYCg2rhwGv8I,7458
|
|
88
|
+
factpulse/models/afnor_search_flow_content.py,sha256=WKKbcqE8tMKgXqjbsk6nlHGbFxCa8gDWtxDzeGSmWJk,8035
|
|
89
|
+
factpulse/models/afnor_search_flow_filters.py,sha256=JlVF_7C8gSHav_CmEEfm0VKlupjcOG1KbpItYIr7r2s,8497
|
|
90
|
+
factpulse/models/afnor_search_flow_params.py,sha256=_rzuugVwm5V4IDHK1GDNhUgubjReo-pOqIsLE6w-bAM,7581
|
|
91
|
+
factpulse/models/afnor_search_siren.py,sha256=80pikzX7T__IN1CGOXoISmnlQgmaBoMKYghHbn3jAVo,8615
|
|
92
|
+
factpulse/models/afnor_search_siren_filters.py,sha256=Hm4sA9J4ZQHyiDbpma7ksy1C_t7lHvRr1H71xKsw8_w,9133
|
|
93
|
+
factpulse/models/afnor_search_siren_filters_administrative_status.py,sha256=sFN4EMDUfxEMOyhXw-FMDzE9inl1MumgSzLVubmvyjg,7368
|
|
94
|
+
factpulse/models/afnor_search_siren_filters_business_name.py,sha256=zwC-kZ4rXQz9iXX9ycclDlwy1nas_nFGqXzCxVIWMjg,7346
|
|
95
|
+
factpulse/models/afnor_search_siren_filters_entity_type.py,sha256=jXP_t-RULsqgIX2fG5USOpFQwBgk1Yxnh1GbfQOzr4U,7269
|
|
96
|
+
factpulse/models/afnor_search_siren_filters_siren.py,sha256=IbQBOli-tD8jbBidHTmQ8uqElPhzY5DTGv384XhcQ9c,7675
|
|
97
|
+
factpulse/models/afnor_search_siren_sorting_inner.py,sha256=i8a27OAnAF54htwMLO3Ajt8EcAHrocFSqWahDipMNEc,7412
|
|
98
|
+
factpulse/models/afnor_search_siret.py,sha256=B-WVCy-P8QmVmtkjARnfX4roiJp70hN0LIZGEKCJ7GE,9065
|
|
99
|
+
factpulse/models/afnor_search_siret_filters.py,sha256=6ssE0KLjtHIozod-uFdOyp6UZU1eC2hMpd-GWJMYvwM,11664
|
|
100
|
+
factpulse/models/afnor_search_siret_filters_address_lines.py,sha256=YOFhDKw_2rzcIt5x45FB5KK4LTUQ-jrKC4q_jfwDwHk,7411
|
|
101
|
+
factpulse/models/afnor_search_siret_filters_administrative_status.py,sha256=j6hqP-lKx4RxeWgfgVqNyFV78MTc97FqGl4iVvsF6CM,7364
|
|
102
|
+
factpulse/models/afnor_search_siret_filters_country_subdivision.py,sha256=FDM2j-TZ6-0wLTRCJTojs8eT5hLIbBZ3d-f4wEnDnYo,7383
|
|
103
|
+
factpulse/models/afnor_search_siret_filters_facility_type.py,sha256=pnTOKKbjd4oVCK4d6X2Rcq6mdyqvCOdS0Wct8OJfE3c,7289
|
|
104
|
+
factpulse/models/afnor_search_siret_filters_locality.py,sha256=VP3pPXKrOgwfdD_Ibnl5C1rJ0KWWRtsp8F9AKCnFv28,7394
|
|
105
|
+
factpulse/models/afnor_search_siret_filters_name.py,sha256=ONCBlNxyA4xZOJXUYsJ98foAAa145v1zDczQIhrDlIg,7314
|
|
106
|
+
factpulse/models/afnor_search_siret_filters_postal_code.py,sha256=XQ7WapVo0DACucGLMKy183iWo2_7EXJinHoi6VF0IYY,7687
|
|
107
|
+
factpulse/models/afnor_search_siret_filters_siret.py,sha256=IEARBI5bnrB8dGMw-ybPTSu7ek0LgVsFvcRglYJ5bmk,7676
|
|
108
|
+
factpulse/models/afnor_search_siret_sorting_inner.py,sha256=k0EmOEasfxVpXuScCSJvLqv1qUovlfx2UJItGSsigDk,7412
|
|
109
|
+
factpulse/models/afnor_siren_field.py,sha256=iOeyOwgjZFpSEjbP_eUbfTA8k05rK8iD5olgvCYMUYE,5369
|
|
110
|
+
factpulse/models/afnor_siren_search_post200_response.py,sha256=JUkUJqNpc9tCPUGf6q2YjXumFjy6C2frajyAW2qEaro,8236
|
|
111
|
+
factpulse/models/afnor_siret_field.py,sha256=BdEVmxNjVR01u9E0w2ZpJOoX9zsOv-WCD52R41aRmGY,5699
|
|
112
|
+
factpulse/models/afnor_siret_search_post200_response.py,sha256=lkAk-BQdOJMQaVF2_1SJAnuxaCktMiys0aP_R-WMzqo,8231
|
|
113
|
+
factpulse/models/afnor_sorting_order.py,sha256=dlPdOMFlYVR-qNEczXjOcAGTLu-lzHb8VjgfHsxY49Y,5277
|
|
114
|
+
factpulse/models/afnor_strict_operator.py,sha256=bBj-DIrb51Ln03jQ6IV7Cs5R5FI7aWvKX_Xo24vF6fA,5240
|
|
115
|
+
factpulse/models/afnor_update_patch_directory_line_body.py,sha256=fGe1vm0eutU-eug4V_e6m2rq0jLKYGUkugC6R1-QnmM,7166
|
|
116
|
+
factpulse/models/afnor_update_patch_routing_code_body.py,sha256=ILO2zyj7Ak4jPdD7GHV48I-ZqMN3gZp438bsmEDpWvk,9129
|
|
117
|
+
factpulse/models/afnor_update_put_routing_code_body.py,sha256=F_3NwNJZuAj3xI-Ak6tOdfIpIFozRBgxrdh_TrsM08M,8937
|
|
118
|
+
factpulse/models/afnor_webhook_callback_content.py,sha256=Y-gzKqibE-iyadEkvF7USj9Xs2GxsibRQyLzwIceUOo,7331
|
|
119
|
+
factpulse/models/aggregated_payment_input.py,sha256=7srnk0dkkCpDOneUjOe44Jajop5VhRgBiL2dyF8uS-c,8337
|
|
120
|
+
factpulse/models/aggregated_transaction_input.py,sha256=mI4PyCDlZeDVov9VSCLf7e69UwcWffsijLPy-VutNVw,10579
|
|
121
|
+
factpulse/models/allowance_charge.py,sha256=4oPI3FbQTdIlgOkGy3saMA2pnwaJ0lj81yN3JzNg44k,10574
|
|
122
|
+
factpulse/models/allowance_charge_reason_code.py,sha256=UVWqckmLduubkJMDNzB8S77t_LagdTJXoi2n7flKy0w,5993
|
|
123
|
+
factpulse/models/allowance_reason_code.py,sha256=W46u3fFrDtU0mnEVaAceEmqSy9vynmWPhINIPl_ZlXs,5695
|
|
124
|
+
factpulse/models/allowance_total_amount.py,sha256=aAlhLUakhr0mkMN__GtOrifq7sPHUTlG1mrwkgXF2cY,9598
|
|
125
|
+
factpulse/models/amount.py,sha256=GHkSOX29UyIvZwEGnl_8w7Mqgg40SaJ6-D9okmtF1u4,9391
|
|
126
|
+
factpulse/models/amount1.py,sha256=yix2-9-U71HQDVwY-A1PniVmn9jiNz8PGnH1FqGoXyo,9425
|
|
127
|
+
factpulse/models/amount_due.py,sha256=clqIra3miUzc77N5abz-H6iw8gEOkltA6_yJo4WvYlE,9465
|
|
128
|
+
factpulse/models/api_error.py,sha256=Nek9q-CIlNzXa3rprEb4drJpKrpMgDYlb4k1gtQnUp0,8171
|
|
129
|
+
factpulse/models/api_profile.py,sha256=pcMe45TWs6zWlX_JJ_OnpbeyAirrahKJ1PyxVKBXUzo,5443
|
|
130
|
+
factpulse/models/async_task_status.py,sha256=UP1BvT16cyjwxqg1NTJmlpOlO6hQ90U73Cg7dbGQvTU,7752
|
|
131
|
+
factpulse/models/base_amount.py,sha256=RjVKgWm9ODBTUqc8sj2icslT8a3CTy5I3buHr7-xX_E,9558
|
|
132
|
+
factpulse/models/bounding_box_schema.py,sha256=yyzL6ErhMhkgJ99HlYep5dD_w7YLl3Szv3ebmrP6vrA,8021
|
|
133
|
+
factpulse/models/buyercountry.py,sha256=ikzkVmrj8bhrQBmiCFa9N3T4Q7qnLvaDyei0EXvjuac,9351
|
|
134
|
+
factpulse/models/celery_status.py,sha256=_g6f5YVSITXoBwAWSrMA7YqiIqUB5R3VZIIe-EcBRxg,5655
|
|
135
|
+
factpulse/models/certificate_info_response.py,sha256=lfCZVG48zl8lHtboX20mFHWQzYkM1xcXtWX8562t8VI,8655
|
|
136
|
+
factpulse/models/charge_total_amount.py,sha256=XbNhDVCjLdUABUUWH8_0tQ-PCL2SdQY9kuj-UvRVJmc,9580
|
|
137
|
+
factpulse/models/chorus_pro_credentials.py,sha256=i_K9Ij2fPfyvCcYap1duVsFR5d3fU7e6h3myz6mQYQs,8333
|
|
138
|
+
factpulse/models/chorus_pro_destination.py,sha256=siayBHrPcLO5hCDXB_oLuF0mUgM04Errebf_gEoYHxg,8255
|
|
139
|
+
factpulse/models/chorus_pro_result.py,sha256=Bnrqw-Ow9J12iMHPK2sizFgNFE66h_rwwhkmR2bQGcI,7938
|
|
140
|
+
factpulse/models/contact.py,sha256=vuv6pixQOqTdWM7mMEKVCLj69oM_3kRBHcdwVkAaqfo,8193
|
|
141
|
+
factpulse/models/convert_resume_request.py,sha256=uZ5o39rLkoY1yd-8dOz70poiLHRLq54nZmb8YkX7ifY,7559
|
|
142
|
+
factpulse/models/convert_success_response.py,sha256=XPSpMHkiT9NM3Qhwd6VNZUQ3Xf_ooKokYE7NE5rP7js,10145
|
|
143
|
+
factpulse/models/convert_validation_failed_response.py,sha256=X1_Q-alC6XVN--2AHB_EgkKv9RYbTLEBO0leX_OQnUg,9935
|
|
144
|
+
factpulse/models/country_code.py,sha256=z63a3Y5h93Wwha1mpVqZn6AkBFYDo61carE3imaNBE8,7720
|
|
145
|
+
factpulse/models/create_aggregated_report_request.py,sha256=5Ws5TMRB9oysr6Es08R7ajr2knbvOl-X1VM1VEQXL3w,12783
|
|
146
|
+
factpulse/models/create_e_reporting_request.py,sha256=UUqst3d3d9FQHy2P2aiCedIpRUKH9vPFEW14AHEhBEA,12920
|
|
147
|
+
factpulse/models/currency.py,sha256=Mvz5vfXQslRC_OnxX7f7Q8FWKTiHKNJvbrNva2wl2qY,9332
|
|
148
|
+
factpulse/models/currency_code.py,sha256=OwXgOiyXTRbEdVRtELwyigZBRnesw7PannCmNX6JrQM,6227
|
|
149
|
+
factpulse/models/delivery_party.py,sha256=laxUh0uEy9ROU06bu6DjZCRJzHoIj0gXEwoZQhHrgS0,8869
|
|
150
|
+
factpulse/models/destination.py,sha256=YKCPNDmeNYx7-J2UlPZApw0mevwZrstQLeoqLh4mc-o,9992
|
|
151
|
+
factpulse/models/directory_line_include.py,sha256=N-nbjYpubjrVvvsuclnZ_YfDlCYWtjqjU9xduIrRYU0,5334
|
|
152
|
+
factpulse/models/doc_type.py,sha256=5uR-K0kWNyUW6NLrJc6rZ_7hTVePsHm_JirveJ8sR3A,5322
|
|
153
|
+
factpulse/models/document_type_info.py,sha256=cvaKCWcIQLHB--WqR5azvsUKnGo_Dwq72J2-R9GkvvQ,7306
|
|
154
|
+
factpulse/models/e_reporting_flow_type.py,sha256=m4IRvP64aNPK2jE2hB6kyfDlcqP0-h-eFr9Gwr_i8tg,5347
|
|
155
|
+
factpulse/models/e_reporting_validation_error.py,sha256=9T6ktAuZpbediaY4czQFwaYaXLkcjF-VCXZnKdnVt4A,7488
|
|
156
|
+
factpulse/models/electronic_address.py,sha256=VeBss6RC2ObJGwTqULto5TxyEGSIe9PpZz1DIzmfNMQ,7491
|
|
157
|
+
factpulse/models/enriched_invoice_info.py,sha256=tj2N9bTlH9WMg-4Nt1D8mj5XjbY-4Li9dMcatlvVTL0,9846
|
|
158
|
+
factpulse/models/error_level.py,sha256=s7L1Z3kMeWXUtL-i961qf6SDaQOwRYu0TjfBxCLin4Y,5220
|
|
159
|
+
factpulse/models/error_source.py,sha256=oD4R78gDTSrXLOuWS3wF3IrnvjClzjWQZgNWpDnW_FI,5369
|
|
160
|
+
factpulse/models/extraction_info.py,sha256=t1NvflVhlFwPY_F-STVQ1baKhOdV5OBZQ869w87Y1o4,7767
|
|
161
|
+
factpulse/models/factur_x_invoice.py,sha256=7U7UMxBU_0zODJ410vLPOlpPxh-iA-Ty4JtsV73HDHQ,21161
|
|
162
|
+
factpulse/models/factur_xpdf_info.py,sha256=GTGNGLI_nOAIujB4BwFyHpBgvt5cT6aEL-Tucv2eZAc,7375
|
|
163
|
+
factpulse/models/facture_electronique_rest_api_schemas_ereporting_invoice_type_code.py,sha256=ubUgE9zg51QWq8EqZbRx7twArSHcyOXtIzxwIpo8rVQ,5400
|
|
164
|
+
factpulse/models/facture_electronique_rest_api_schemas_processing_chorus_pro_credentials.py,sha256=ApsX86lJENEbwJWwLLRHECVe5w_kRjhRyOejPPDcB4s,9243
|
|
165
|
+
factpulse/models/field_status.py,sha256=4VWDxtGgIf9DvI560Uw3Y2rrUEOhB2gfG_uWSyHHc2E,5362
|
|
166
|
+
factpulse/models/file_info.py,sha256=Z48RcHOZljThk4Xri05xTh85TJv77f8d8GPNGBGYPtQ,7472
|
|
167
|
+
factpulse/models/files_info.py,sha256=h9oOzq-UHwe7h42Txur6K2u33rqOAcorTU_gIc9r_dc,7977
|
|
168
|
+
factpulse/models/flow_direction.py,sha256=cRSMNLZR9VboBpBEWcoS7rU3RmEeKtkhuLd4VgsIpeY,5217
|
|
169
|
+
factpulse/models/flow_profile.py,sha256=ppyow4tp-kdIbwEYCEKWnUgmgqGxCo_YLI29CFq58DE,5282
|
|
170
|
+
factpulse/models/flow_summary.py,sha256=UwhHF1FTUDNGOeX5OysS87nO2qOmuL7aJhW-lGgKi8k,9229
|
|
171
|
+
factpulse/models/flow_syntax.py,sha256=Hkvkf8whiTFMJavcY4FqpfGxLMkL2_WcwBOaRGBdUfI,5297
|
|
172
|
+
factpulse/models/flow_type.py,sha256=vtLkMA98tPgjD80FXasVxcfg-2Ecnhr8cfFWNdQk7yM,6057
|
|
173
|
+
factpulse/models/generate_aggregated_report_response.py,sha256=6txzYdQWKxlu_EAGmTLmpQIwvbbgtJv49YrcjEBWwk4,8049
|
|
174
|
+
factpulse/models/generate_certificate_request.py,sha256=S6j4pfP6tE2GefPRBfks-RO38DCwAG9Ro1Swj4_JHa4,9931
|
|
175
|
+
factpulse/models/generate_certificate_response.py,sha256=J7-GE9HTloHkFmTYojo17f5IMorxI96iock76FJ3igM,8903
|
|
176
|
+
factpulse/models/generate_e_reporting_response.py,sha256=veYOeX2a_plgt-PrzeghdafnpdqYNBlFoGtRgDPptU8,7597
|
|
177
|
+
factpulse/models/get_chorus_pro_id_request.py,sha256=qHHsbKp5dGq6igHg46hJK5G9LkoBneZUZFQQl0I6iX8,8022
|
|
178
|
+
factpulse/models/get_chorus_pro_id_response.py,sha256=KZwdtbzaoXWZyNcp-A57aIVvokmzfysN2rQi6pXGPoE,7820
|
|
179
|
+
factpulse/models/get_invoice_request.py,sha256=yy9Mb8Aw_UQzVRkzW8uFigzHwlFj7F-npYoqGtcj8FI,7770
|
|
180
|
+
factpulse/models/get_invoice_response.py,sha256=sghuOUuI-30j-sTK7agC2wJz9rjgTePh2MKZ85ibRuo,10479
|
|
181
|
+
factpulse/models/get_structure_request.py,sha256=mLk4SQbpeTlLic0qaDW3Tsa5SGYZw-AqS3Scc167rtw,8014
|
|
182
|
+
factpulse/models/get_structure_response.py,sha256=YnqbC40ywFZclXoZbCJZBkV4DRHP7qiCGiPGG6ohCH8,10240
|
|
183
|
+
factpulse/models/global_allowance_amount.py,sha256=ryW1hZEosJduSghKDcmKSCH-t1KgoLxj6z-jSsn-aW4,9590
|
|
184
|
+
factpulse/models/gross_unit_price.py,sha256=zOt9xbbg9KE3K2-SG6t-bl25j2f2XBBAa5slYLoVij8,9566
|
|
185
|
+
factpulse/models/http_validation_error.py,sha256=hLW_cwzz-buXYyQ3RH8FVDxB82JBS_3iA3yvCo7hl-o,7476
|
|
186
|
+
factpulse/models/incoming_invoice.py,sha256=e7F3ekElF4fih4HQXr10w1CuSdUsG8vfeV2YzAFvIWM,13030
|
|
187
|
+
factpulse/models/incoming_supplier.py,sha256=OdMihX6PSaIM9F3NYt25YUsF8h9QyElXc0UQ3S56eKM,10237
|
|
188
|
+
factpulse/models/invoice_format.py,sha256=SQb1aFTxHbruPUsWNx6IOIyn54NnfWmMa34V47GNAN0,5277
|
|
189
|
+
factpulse/models/invoice_input.py,sha256=0vFVt1Ttr8xwU2bghVhlr-ymDN1lgpPPcD6T41JvjD0,13197
|
|
190
|
+
factpulse/models/invoice_line.py,sha256=fX0Hnj4ksKlbYR04jx-ZYwiOwbVBLdDwalNH5M4-3cA,24201
|
|
191
|
+
factpulse/models/invoice_line_allowance_amount.py,sha256=0tqkdVGH3vIP4YRFfJhDyZCD4DKVb4SDNlU_VWOcfLE,9693
|
|
192
|
+
factpulse/models/invoice_note.py,sha256=ZgIBtmugu281D-bwtObwO9ESs2XH6qwjZPO2aGsPoso,7497
|
|
193
|
+
factpulse/models/invoice_payment_input.py,sha256=ySyFUcuvoq9dpyKvlL7J9IXFKxYteV_OxkyZOPEXTOE,8663
|
|
194
|
+
factpulse/models/invoice_references.py,sha256=Qh4FKoAUCPUBR5qEoUHWCzSrUqt_KeLilXBiu3zk2gs,13570
|
|
195
|
+
factpulse/models/invoice_status.py,sha256=JIG-kN-Ua7QjVVEC4g96usqR9mX6qSbLpzTaIci15js,7514
|
|
196
|
+
factpulse/models/invoice_totals.py,sha256=ypcG4-wQAQW9jvJ2iuDqH7ayYAev5EOYXqlyRjmU16s,13423
|
|
197
|
+
factpulse/models/invoice_totals_prepayment.py,sha256=98mGamYDhDEiUCqNO_8rpSI60Ku_R3G6momEtIzPj84,9642
|
|
198
|
+
factpulse/models/invoice_type_code.py,sha256=kpKcsUqUl01HwRNXpDNlrkDSbopRTljaJ6FoDlx4alc,6856
|
|
199
|
+
factpulse/models/invoice_type_code_output.py,sha256=uu17BhfpkSEfkLTF8aejqzDZFeu6c46WUpG1bXEEv18,6868
|
|
200
|
+
factpulse/models/invoicing_framework.py,sha256=IL7zZuaw82PqcKz_PXctHaguTi1cNJqx6ueZMlZ3Eo8,9078
|
|
201
|
+
factpulse/models/invoicing_framework_code.py,sha256=2TYLYWjiKGYMDVqagCMU6vbA_DlkERtXTL2pMunzwyc,5483
|
|
202
|
+
factpulse/models/line_net_amount.py,sha256=_fXSvIKOrWdO1YjrFawg5WD6PEpQbJTporBLutzTDCU,9588
|
|
203
|
+
factpulse/models/line_sub_type.py,sha256=Vhw7vf2Zkt9_-u-5lZogh3Idic_B1E_hmsj3oXebPYI,5573
|
|
204
|
+
factpulse/models/line_total_amount.py,sha256=dU-xZBRgcVjR6Hu23QER8kj2kYlRE2vHWHz0sn8Blao,9569
|
|
205
|
+
factpulse/models/location_inner.py,sha256=2fvJazL-ztS-k08yjYijhvKqjSaPLlIid8KjWTpQeKY,9302
|
|
206
|
+
factpulse/models/mandatory_note_schema.py,sha256=oCHPGQS_8Bd1LiIoc3hhZzkD1uMlRXb-7B-oVO2zHFI,9061
|
|
207
|
+
factpulse/models/manual_rate.py,sha256=9VBs0eFJiVOSiIagW5-KOCabzYG-ZuxfgggXPw0yI7c,9500
|
|
208
|
+
factpulse/models/manual_vat_rate.py,sha256=CyLTQDzdwnO2NDOWxNn6pAAtmCquNR99jB2Q6FQ0uLU,9522
|
|
209
|
+
factpulse/models/missing_field.py,sha256=m1-IET9PlWsyAnzM0gdq8UtSuRZeloa3v2bb8KjWLQY,8214
|
|
210
|
+
factpulse/models/operation_nature.py,sha256=7--wb43aNX1Gas2p4qm6UR3e1s4wNSwqVHe9q20Pwu8,5801
|
|
211
|
+
factpulse/models/output_format.py,sha256=mKVP2_A7IJPS290JzgSd1BnxAQ8ckthkBI_N5HX9uH4,5239
|
|
212
|
+
factpulse/models/page_dimensions_schema.py,sha256=m_E3Y_3Bdfmwnak2P-QpnDUbck4PgglMp0f0_vxQB5c,7204
|
|
213
|
+
factpulse/models/payee.py,sha256=P14WUKtA-gZZc359UroMOLuAvMKj6PKNysMd8ZcDdWw,11387
|
|
214
|
+
factpulse/models/payment_amount_by_rate.py,sha256=8j2VK39h6Sh7CtzrPfrNyiK8dUS-LvY1n4wfPbl1Jac,7549
|
|
215
|
+
factpulse/models/payment_card.py,sha256=oEPTmUfY5SSdxYITYnp-QHdjuWyGBpSS-jgQSB3e3LA,7622
|
|
216
|
+
factpulse/models/payment_means.py,sha256=vCj5Ws6r0_4qWmMn3N-63LZ7TBQ72M9bZ0t7oW0QZvQ,5339
|
|
217
|
+
factpulse/models/pdf_validation_result_api.py,sha256=PHVJZMky3f3fMqvoGniFXl_jqWmee-_7Wnt5oCOsXDo,13287
|
|
218
|
+
factpulse/models/pdp_credentials.py,sha256=svKRALDlUJekJcS_tVkh9_PnLxWjH0X0kPqc4q96vLw,8245
|
|
219
|
+
factpulse/models/percentage.py,sha256=i-g5DsQSjHUOQ38JTHZGvKmTKXh5OmmLNSty2rSynYk,9553
|
|
220
|
+
factpulse/models/postal_address.py,sha256=kqsClz8NEhhyNKTDlo61EX1FgNPMkxHdJl0DcBYwK8k,9446
|
|
221
|
+
factpulse/models/price_allowance_amount.py,sha256=UReqnrkzezJ4jxgBjXOmZljVfJ6PndseoWc2Jh_38Io,9585
|
|
222
|
+
factpulse/models/price_basis_quantity.py,sha256=JhUZR4qXQ_Zv7uRStrPWBtRpyEIzMS1-2-x6mbaUBxU,9587
|
|
223
|
+
factpulse/models/processing_options.py,sha256=PUZp3ntz05HKfnV21WZUWA6kiBkSeqhTli3gk5YFRd4,8087
|
|
224
|
+
factpulse/models/processing_rule.py,sha256=zPm9FubxZe5wvgTSjXsF0gPNbTcRnDfN10bqacu8m8E,5431
|
|
225
|
+
factpulse/models/product_characteristic.py,sha256=dU179eS2M7_xISFSodk4VNrYyqaoZjX423AuZ8Iyy0U,7208
|
|
226
|
+
factpulse/models/product_classification.py,sha256=nk17v5ytdo-ePBI-hOoVVGyhcEYewsV5dRerMKsPImI,7825
|
|
227
|
+
factpulse/models/quantity.py,sha256=cuFVwl50ybxJ5vtYwe68pz056AJYamxZz1g-yW1RtRg,9455
|
|
228
|
+
factpulse/models/rate.py,sha256=j51fPujQE5Tc3WIjmpRi07JkmRjwqeL-BWpy6VTrYr0,9433
|
|
229
|
+
factpulse/models/rate1.py,sha256=UryNmMmbE9KQ_2j7pjnw0ljubkrMcVxsMwA9VYunZiQ,9460
|
|
230
|
+
factpulse/models/recipient.py,sha256=PHJ_NlXlP5YlXj7ECC3ZrNvBscqS4zOXmK30vrbVLS8,11328
|
|
231
|
+
factpulse/models/report_period.py,sha256=JK3g-xbfDbgIBMIcBNz1lZA3PAWvCXR3aOiofHeuGQ4,7199
|
|
232
|
+
factpulse/models/report_sender.py,sha256=ityM509TKbPCUnUrS5bt28VAaRbWasut9rTagFMM3J8,7546
|
|
233
|
+
factpulse/models/rounding_amount.py,sha256=jCVxsR8EIQ5MZ7dX6--T9A4WJxVpeWm4L9Y1QxisEZI,9559
|
|
234
|
+
factpulse/models/routing_code_include.py,sha256=AGPZXCpoi5LdBXijKXlZ42tPJRyA-veM_ZEDkL9d13k,5270
|
|
235
|
+
factpulse/models/schematron_validation_error.py,sha256=banGwXoRGzZfo7pe068s5a4S_et0CuWVh6ESoGjn7vE,9204
|
|
236
|
+
factpulse/models/scheme_id.py,sha256=9sjd0qch0sUsDu6aCOIaO-noqEEgRPkCaMb6Rxq6H70,6180
|
|
237
|
+
factpulse/models/search_flow_request.py,sha256=9Q7ZXNR83wV7Da-AgoDhGRwPj4c2vHusRHyFwAFVnL0,10343
|
|
238
|
+
factpulse/models/search_flow_response.py,sha256=HFcf-0NkpK3qhN4Y6mn2Z8gu5yi0iRe8PXOQUquGKjU,7845
|
|
239
|
+
factpulse/models/search_services_response.py,sha256=f6O9MHSZQ94IkU6lxxUOxX1EwHnr012hxM-KIhHYX1A,8041
|
|
240
|
+
factpulse/models/search_structure_request.py,sha256=n7v3JHVn1T5BPCuwHqO9g2oOJiu1kTGWmGEBEcxHolE,9284
|
|
241
|
+
factpulse/models/search_structure_response.py,sha256=teDsODiTqm4rgClHwGYPTqxt21cHuHZL8WCmClQH7C8,8014
|
|
242
|
+
factpulse/models/sellercountry.py,sha256=NqrCCSAgZmVddUZ_-p3gF6yxgJ0JILwEnhVwxLbwcqI,9357
|
|
243
|
+
factpulse/models/signature_info.py,sha256=Z-X8uJWokKde0GYStVogBk9XlMJ2WUhFdI0q2O5dTjo,7645
|
|
244
|
+
factpulse/models/signature_info_api.py,sha256=2Rz5GyxLwVqBCSjm2Z-o6p1x8MhooG3PyOWOSNWguWo,8742
|
|
245
|
+
factpulse/models/signature_parameters.py,sha256=zjNaTB37cl9hKq2-vOOavgOk_SmBZtBOSe3CgMVhOdY,10278
|
|
246
|
+
factpulse/models/simplified_invoice_data.py,sha256=mLQfbP2YnLvX17ZP52-xrrXPmEXEdZWGEcleGhjT9x8,11169
|
|
247
|
+
factpulse/models/siret_include.py,sha256=B77p7LXJoz9qOl9SbDH6wE_QK4o96NknZ7G0EISaXRQ,5231
|
|
248
|
+
factpulse/models/structure_info.py,sha256=6MAu9FW0J9lI1Vann3tlyB20-ehxD5Ffh9HN37wWtRE,7773
|
|
249
|
+
factpulse/models/structure_parameters.py,sha256=UqcFXowTdCVd0IhIqjGM2_mxtD7VE-iy7je-TZOpzxE,7906
|
|
250
|
+
factpulse/models/structure_service.py,sha256=AlGPryh2oX64a9-85zaf4Rom-iY_Ahzq_GvI_nXonx8,7510
|
|
251
|
+
factpulse/models/submission_mode.py,sha256=LVTR5ELCP_PN8jB_p2CmqbbSTQ6UGwpGsAYWpo5pG1k,5326
|
|
252
|
+
factpulse/models/submit_aggregated_report_request.py,sha256=hKl-mjIbef8TWElEcNsIr4R4Z_DOf8rJKaZvBspcgBA,9433
|
|
253
|
+
factpulse/models/submit_complete_invoice_request.py,sha256=DOfHMmkS6JNDQMIf8-kYW978oKDMCldtoZ7Pi8x_u8g,9330
|
|
254
|
+
factpulse/models/submit_complete_invoice_response.py,sha256=dMaQKPGr7HrpWDMWvLQZJE8wA1RcPJqPVjc7JXjstPc,10945
|
|
255
|
+
factpulse/models/submit_e_reporting_request.py,sha256=Arl7BanjuygPZunUCRZ74OkuY39q9T_gwJiVX17v-9Y,9376
|
|
256
|
+
factpulse/models/submit_e_reporting_response.py,sha256=Io6aSjjUjSCRyJZ5vp_M0MsFBdZVkJshXqnKZn0eFuU,8787
|
|
257
|
+
factpulse/models/submit_flow_request.py,sha256=Wp85SL-pn_OFX6t9DluE7PwGICWSn-E_fBhmlt07kXs,9246
|
|
258
|
+
factpulse/models/submit_flow_response.py,sha256=hw-aeT1zqzZJuo93rcyTHTneetrz6O84bETJJ-54cRM,8252
|
|
259
|
+
factpulse/models/submit_gross_amount.py,sha256=fVL9JPkO7dzMXaZIgo5ABusPUlMeSfxbmmnbKXPgExw,9450
|
|
260
|
+
factpulse/models/submit_invoice_request.py,sha256=4i5jjUFv92ZluGSD8_JWK4bCOV5IgCEu6tXNHvVHQzY,12856
|
|
261
|
+
factpulse/models/submit_invoice_response.py,sha256=KZ78mM_Hhgh9wVHsc_DQdaoqahwGQwbcYMfCF4ETfnM,8079
|
|
262
|
+
factpulse/models/submit_net_amount.py,sha256=jvSLKgIGKqJNrt2VU_FpiwMdWtsF_b9X5Eyur3JgXyE,9438
|
|
263
|
+
factpulse/models/submit_vat_amount.py,sha256=4TKR5G7mVyoaAUCCKMocWt-2BxarSxC8hknbrqPatOE,9432
|
|
264
|
+
factpulse/models/supplementary_attachment.py,sha256=ENa9y_TOpvRSsKqprTloDQwkEG-z_ILKZVF90RP_ZGc,7600
|
|
265
|
+
factpulse/models/supplier.py,sha256=3kX_pjLO4crw8AV5Ivi6C0__VUhlaY3oNow9gi3_TQw,14326
|
|
266
|
+
factpulse/models/task_response.py,sha256=yDxP__ojUZyMAjT7hf0pFQyhEc0Mjo-5roAzBpEvjtQ,7069
|
|
267
|
+
factpulse/models/tax_breakdown_input.py,sha256=RFkidhjYs-6kHINBGuaPHyZnZjkYSf3F5cFZf6iTNCQ,8089
|
|
268
|
+
factpulse/models/tax_due_date_type.py,sha256=NvJk0jdUOlfoK8URuC3uj-wehTFE-piifI7-m_Yn0nI,5621
|
|
269
|
+
factpulse/models/tax_representative.py,sha256=ZPUEReQm5csI204sRKDAEEtt0A4piMSddJhLygkXejo,7798
|
|
270
|
+
factpulse/models/taxable_amount.py,sha256=4PpmtWfRBnY-2grUmTmg5O1jLUgIL1_Sxt7QUfWur9U,9490
|
|
271
|
+
factpulse/models/taxableamount.py,sha256=w_VSjpETPxSd7L677JwOIfffCvvOjDLFYGJkegoxwOY,9433
|
|
272
|
+
factpulse/models/taxamount.py,sha256=QSR0LQiIsyF75DvDOt0dlrO8G3Hr73AxD-oznIkj4j4,9408
|
|
273
|
+
factpulse/models/taxamount1.py,sha256=urasHCzy9u6LBMs06LdoB16GcOxbhSrTVhw2ntJGHzY,9407
|
|
274
|
+
factpulse/models/taxamount2.py,sha256=uE9lb8tyM4f_b6FdaC-5FWPCmYnelkUeuDXAMytuv-0,9407
|
|
275
|
+
factpulse/models/taxexclusiveamount.py,sha256=B8_zgPmRMgEMqEMR8K5wcXlmvS94yNnIJ7nrXwxHl5U,9463
|
|
276
|
+
factpulse/models/taxexclusiveamount1.py,sha256=v3OM2c6S-36M6RDCvcNcPf1Jfey_RazJPtaAym_D64M,9462
|
|
277
|
+
factpulse/models/total_gross_amount.py,sha256=SFzvI2GkGtHIWl1S4eYVQDieZAjNeq86TH3DwO9-wVM,9507
|
|
278
|
+
factpulse/models/total_net_amount.py,sha256=z12IA9ClZkfu8tn1PadoC5B93TlFV7XXI-wB76fkD6c,9500
|
|
279
|
+
factpulse/models/total_vat_amount.py,sha256=LiodBNmpvQQpmJDxnL3L6uFmy1fAObcHiR7dw0EcEq0,9492
|
|
280
|
+
factpulse/models/transaction_category.py,sha256=dBhv0tAChQ_pD6GJmUqtGgCWYUqCccOyF324JISmYXY,5709
|
|
281
|
+
factpulse/models/transmission_type_code.py,sha256=0zBlmrWI-IXEEVdnE-T9TdAdd9eZyuJgA2W_bJ3okEU,5466
|
|
282
|
+
factpulse/models/unit_net_price.py,sha256=dl9h_OKRCWcxRKTh0po3IvBDGs_pZqvUxaiRW8gJuZQ,9451
|
|
283
|
+
factpulse/models/unit_of_measure.py,sha256=TSF2d-KqFseOEIZ9k7hWYddwQc5BKsLfxF5aT1DYEYY,5346
|
|
284
|
+
factpulse/models/validate_e_reporting_request.py,sha256=CRnjiqh4yr6r8JJsxXpWOaxk9MQZap8vLsODn411SYs,7391
|
|
285
|
+
factpulse/models/validate_e_reporting_response.py,sha256=n1A3M7a24AvCUDMShg3-RhCdh4tNLNnuTF5IagrjnJw,8788
|
|
286
|
+
factpulse/models/validation_error.py,sha256=NMpGyf0NBraANKFBO0iuygKOhEtu6M35QmnO-ujxeAA,7526
|
|
287
|
+
factpulse/models/validation_error_detail.py,sha256=907zqmNIgHa6fPir_6VVwdTsKOdg4_1rqQpgf-NTRSI,8181
|
|
288
|
+
factpulse/models/validation_error_response.py,sha256=83vitQbZg7F_2VJ3QJtr1S66z3b405xLp_bgFOclPJ8,7073
|
|
289
|
+
factpulse/models/validation_info.py,sha256=r1Def-HXJ66poVODo8m2-nmiK58eZPHqhmTuyeADsPE,8468
|
|
290
|
+
factpulse/models/validation_success_response.py,sha256=uS_lC3K7lqsJUWijs2aZ1OPJNaLqEfqFYTI2MSINX4Y,7080
|
|
291
|
+
factpulse/models/vat_accounting_code.py,sha256=AOZ7r0SyPdYaY13NFnA4SiDPAyLvH2Vil5baRWHZCrM,5346
|
|
292
|
+
factpulse/models/vat_amount.py,sha256=rfoboOnL5OXWouc008_nh8k1imtP78Ed_XxE2JOu-As,9466
|
|
293
|
+
factpulse/models/vat_category.py,sha256=6H4_Wi9vUKl4sk90B6fImLYPqVT8fij50ay9gCoK0o8,5720
|
|
294
|
+
factpulse/models/vat_line.py,sha256=KYY7c84LcjuBo_jJJDWPOCku7sBzf9p3JCSq_czXbLY,10069
|
|
295
|
+
factpulse/models/vat_point_date_code.py,sha256=pXHRakOQbNBpVgid0wyZkFrbWlyWY7ZR28_ys-XwCb8,5320
|
|
296
|
+
factpulse/models/vat_rate.py,sha256=FHz2BMB-RYDioV7IbzriecSvVo5MumV7xHeYppHPNR8,9541
|
|
297
|
+
factpulse/models/verification_success_response.py,sha256=mRELloqqa0575z16g2bgyhQ6e2SDKdFvUZ8EC4Ckp_k,11193
|
|
298
|
+
factpulse/models/verified_field_schema.py,sha256=HvWsfUuVoXT_JbyOadicmyBnaJ4bY3TD2975oq-eK_c,9582
|
|
299
|
+
factpulse-3.0.23.dist-info/licenses/LICENSE,sha256=VwZMpF5Jd56aVNgvCP73eSAXq0H0qj5DZbEE4AGNlp0,1066
|
|
300
|
+
factpulse_helpers/__init__.py,sha256=sNudk_JnH-cY-ckqYGGw7GoCY3Esqu6KSIW474rhWAg,2533
|
|
301
|
+
factpulse_helpers/client.py,sha256=-mCzUxbGpeImzbNKCeQxvb7mgQvtflqg8lIueRHw_wI,80316
|
|
302
|
+
factpulse_helpers/exceptions.py,sha256=xraFc_rLUALO1kGrl1US01zIg5hKatfxxqgcE5aNY0g,9083
|
|
303
|
+
factpulse-3.0.23.dist-info/METADATA,sha256=0MmO8HqeX_8lSAWEd1nhKj4Vn1blVO8ONz1q8-vlpIg,7099
|
|
304
|
+
factpulse-3.0.23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
305
|
+
factpulse-3.0.23.dist-info/top_level.txt,sha256=gG17jwZIkNxBJeHxdyLCU6kkoGMr2Ir2metnQ7eT2xY,28
|
|
306
|
+
factpulse-3.0.23.dist-info/RECORD,,
|
factpulse_helpers/__init__.py
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
"""
|
|
2
|
-
|
|
2
|
+
FactPulse Helpers - Simplified client with built-in JWT authentication and polling.
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
- FactPulseClient
|
|
6
|
-
- ChorusProCredentials / AFNORCredentials
|
|
7
|
-
-
|
|
8
|
-
-
|
|
4
|
+
This module provides:
|
|
5
|
+
- FactPulseClient: Client with JWT auth and automatic polling
|
|
6
|
+
- ChorusProCredentials / AFNORCredentials: Dataclasses for Zero-Trust mode
|
|
7
|
+
- Amount helpers: amount(), invoice_totals(), invoice_line(), vat_line()
|
|
8
|
+
- JSON helpers: DecimalEncoder, json_dumps_safe() for serializing Decimal/datetime
|
|
9
9
|
|
|
10
10
|
Example:
|
|
11
11
|
>>> from factpulse_helpers import (
|
|
12
12
|
... FactPulseClient,
|
|
13
13
|
... ChorusProCredentials,
|
|
14
14
|
... AFNORCredentials,
|
|
15
|
-
...
|
|
16
|
-
...
|
|
15
|
+
... invoice_totals,
|
|
16
|
+
... invoice_line,
|
|
17
17
|
... )
|
|
18
18
|
>>>
|
|
19
19
|
>>> client = FactPulseClient(
|
|
@@ -31,15 +31,15 @@ from .client import (
|
|
|
31
31
|
FactPulseClient,
|
|
32
32
|
ChorusProCredentials,
|
|
33
33
|
AFNORCredentials,
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
#
|
|
34
|
+
amount,
|
|
35
|
+
invoice_totals,
|
|
36
|
+
invoice_line,
|
|
37
|
+
vat_line,
|
|
38
|
+
postal_address,
|
|
39
|
+
electronic_address,
|
|
40
|
+
supplier,
|
|
41
|
+
recipient,
|
|
42
|
+
# JSON utilities
|
|
43
43
|
DecimalEncoder,
|
|
44
44
|
json_dumps_safe,
|
|
45
45
|
)
|
|
@@ -57,22 +57,22 @@ from .exceptions import (
|
|
|
57
57
|
)
|
|
58
58
|
|
|
59
59
|
__all__ = [
|
|
60
|
-
#
|
|
60
|
+
# Main client
|
|
61
61
|
"FactPulseClient",
|
|
62
62
|
# Credentials
|
|
63
63
|
"ChorusProCredentials",
|
|
64
64
|
"AFNORCredentials",
|
|
65
|
-
#
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
#
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
#
|
|
65
|
+
# Amount and line helpers
|
|
66
|
+
"amount",
|
|
67
|
+
"invoice_totals",
|
|
68
|
+
"invoice_line",
|
|
69
|
+
"vat_line",
|
|
70
|
+
# Party helpers (supplier/recipient)
|
|
71
|
+
"postal_address",
|
|
72
|
+
"electronic_address",
|
|
73
|
+
"supplier",
|
|
74
|
+
"recipient",
|
|
75
|
+
# JSON utilities (Decimal, datetime handling, etc.)
|
|
76
76
|
"DecimalEncoder",
|
|
77
77
|
"json_dumps_safe",
|
|
78
78
|
# Exceptions
|
|
@@ -84,13 +84,13 @@ __all__ = [
|
|
|
84
84
|
"FactPulseServiceUnavailableError",
|
|
85
85
|
"FactPulseAPIError",
|
|
86
86
|
"ValidationErrorDetail",
|
|
87
|
-
# Helpers
|
|
87
|
+
# Helpers for parsing API errors
|
|
88
88
|
"parse_api_error",
|
|
89
89
|
"api_exception_to_validation_error",
|
|
90
90
|
]
|
|
91
91
|
|
|
92
92
|
|
|
93
|
-
#
|
|
94
|
-
def
|
|
95
|
-
"""
|
|
96
|
-
return
|
|
93
|
+
# Backward compatibility alias
|
|
94
|
+
def format_amount(value) -> str:
|
|
95
|
+
"""Format an amount for the FactPulse API. Alias for amount()."""
|
|
96
|
+
return amount(value)
|