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,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: factpulse
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.23
|
|
4
4
|
Summary: FactPulse REST API
|
|
5
5
|
Home-page: https://github.com/factpulse/sdk-python
|
|
6
|
-
Author:
|
|
7
|
-
Author-email:
|
|
6
|
+
Author: FactPulse
|
|
7
|
+
Author-email: FactPulse <contact@factpulse.fr>
|
|
8
|
+
License: Proprietary
|
|
8
9
|
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
|
|
9
10
|
Keywords: OpenAPI,OpenAPI-Generator,FactPulse REST API
|
|
10
11
|
Requires-Python: >=3.9
|
|
@@ -44,7 +45,7 @@ The `factpulse_helpers` module provides a simplified API with automatic authenti
|
|
|
44
45
|
from factpulse_helpers import (
|
|
45
46
|
FactPulseClient,
|
|
46
47
|
amount,
|
|
47
|
-
|
|
48
|
+
invoice_totals,
|
|
48
49
|
invoice_line,
|
|
49
50
|
vat_line,
|
|
50
51
|
supplier,
|
|
@@ -59,8 +60,10 @@ client = FactPulseClient(
|
|
|
59
60
|
|
|
60
61
|
# Build the invoice with helpers
|
|
61
62
|
invoice_data = {
|
|
62
|
-
"
|
|
63
|
-
"
|
|
63
|
+
"invoiceNumber": "INV-2025-001",
|
|
64
|
+
"issueDate": "2025-01-15",
|
|
65
|
+
"dueDate": "2025-02-15",
|
|
66
|
+
"currencyCode": "EUR",
|
|
64
67
|
"supplier": supplier(
|
|
65
68
|
name="My Company SAS",
|
|
66
69
|
siret="12345678901234",
|
|
@@ -75,26 +78,25 @@ invoice_data = {
|
|
|
75
78
|
postal_code="69001",
|
|
76
79
|
city="Lyon",
|
|
77
80
|
),
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
"totals": invoice_totals(
|
|
82
|
+
total_excl_tax=1000.00,
|
|
83
|
+
total_vat=200.00,
|
|
84
|
+
total_incl_tax=1200.00,
|
|
85
|
+
amount_due=1200.00,
|
|
83
86
|
),
|
|
84
87
|
"lines": [
|
|
85
88
|
invoice_line(
|
|
86
|
-
|
|
89
|
+
line_number=1,
|
|
87
90
|
description="Consulting services",
|
|
88
91
|
quantity=10,
|
|
89
|
-
|
|
90
|
-
|
|
92
|
+
unit_price_excl_tax=100.00,
|
|
93
|
+
line_total_excl_tax=1000.00,
|
|
91
94
|
)
|
|
92
95
|
],
|
|
93
96
|
"vatLines": [
|
|
94
97
|
vat_line(
|
|
95
|
-
|
|
98
|
+
base_amount_excl_tax=1000.00,
|
|
96
99
|
vat_amount=200.00,
|
|
97
|
-
rate="20.00",
|
|
98
100
|
)
|
|
99
101
|
],
|
|
100
102
|
}
|
|
@@ -128,25 +130,25 @@ amount("1234.56") # "1234.56"
|
|
|
128
130
|
amount(None) # "0.00"
|
|
129
131
|
```
|
|
130
132
|
|
|
131
|
-
###
|
|
133
|
+
### invoice_totals(total_excl_tax, total_vat, total_incl_tax, amount_due, ...)
|
|
132
134
|
|
|
133
|
-
Creates a complete
|
|
135
|
+
Creates a complete invoice totals object.
|
|
134
136
|
|
|
135
137
|
```python
|
|
136
|
-
from factpulse_helpers import
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
discount_reason="Loyalty",
|
|
145
|
-
prepayment=100.00,
|
|
138
|
+
from factpulse_helpers import invoice_totals
|
|
139
|
+
|
|
140
|
+
totals = invoice_totals(
|
|
141
|
+
total_excl_tax=1000.00,
|
|
142
|
+
total_vat=200.00,
|
|
143
|
+
total_incl_tax=1200.00,
|
|
144
|
+
amount_due=1200.00,
|
|
145
|
+
discount_incl_tax=50.00, # Optional
|
|
146
|
+
discount_reason="Loyalty", # Optional
|
|
147
|
+
prepayment=100.00, # Optional
|
|
146
148
|
)
|
|
147
149
|
```
|
|
148
150
|
|
|
149
|
-
### invoice_line(
|
|
151
|
+
### invoice_line(line_number, description, quantity, unit_price_excl_tax, line_total_excl_tax, ...)
|
|
150
152
|
|
|
151
153
|
Creates an invoice line.
|
|
152
154
|
|
|
@@ -154,19 +156,19 @@ Creates an invoice line.
|
|
|
154
156
|
from factpulse_helpers import invoice_line
|
|
155
157
|
|
|
156
158
|
line = invoice_line(
|
|
157
|
-
|
|
159
|
+
line_number=1,
|
|
158
160
|
description="Consulting services",
|
|
159
161
|
quantity=5,
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
vat_category="S",
|
|
164
|
-
unit="HOUR",
|
|
165
|
-
reference="REF-001",
|
|
162
|
+
unit_price_excl_tax=200.00,
|
|
163
|
+
line_total_excl_tax=1000.00,
|
|
164
|
+
vat_rate_code="TVA20", # Or vat_rate_value="20.00"
|
|
165
|
+
vat_category="S", # S, Z, E, AE, K
|
|
166
|
+
unit="HOUR", # FORFAIT, PIECE, HOUR, DAY...
|
|
167
|
+
reference="REF-001", # Optional
|
|
166
168
|
)
|
|
167
169
|
```
|
|
168
170
|
|
|
169
|
-
### vat_line(
|
|
171
|
+
### vat_line(base_amount_excl_tax, vat_amount, ...)
|
|
170
172
|
|
|
171
173
|
Creates a VAT breakdown line.
|
|
172
174
|
|
|
@@ -174,10 +176,10 @@ Creates a VAT breakdown line.
|
|
|
174
176
|
from factpulse_helpers import vat_line
|
|
175
177
|
|
|
176
178
|
vat = vat_line(
|
|
177
|
-
|
|
179
|
+
base_amount_excl_tax=1000.00,
|
|
178
180
|
vat_amount=200.00,
|
|
179
|
-
|
|
180
|
-
category="S",
|
|
181
|
+
rate_code="TVA20", # Or rate_value="20.00"
|
|
182
|
+
category="S", # S, Z, E, AE, K
|
|
181
183
|
)
|
|
182
184
|
```
|
|
183
185
|
|
|
@@ -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/client.py
CHANGED
|
@@ -962,7 +962,8 @@ class FactPulseClient:
|
|
|
962
962
|
raise FactPulseValidationError(error_msg, errors)
|
|
963
963
|
|
|
964
964
|
result = response.json()
|
|
965
|
-
|
|
965
|
+
# API returns camelCase: taskId (or snake_case for backwards compat)
|
|
966
|
+
task_id = result.get("taskId") or result.get("task_id")
|
|
966
967
|
|
|
967
968
|
if not task_id:
|
|
968
969
|
raise FactPulseValidationError("No task ID in response")
|
|
@@ -1,114 +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 pprint
|
|
17
|
-
import re # noqa: F401
|
|
18
|
-
import json
|
|
19
|
-
|
|
20
|
-
from datetime import datetime
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
22
|
-
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
-
from factpulse.models.extraction_info import ExtractionInfo
|
|
24
|
-
from factpulse.models.missing_field import MissingField
|
|
25
|
-
from typing import Optional, Set
|
|
26
|
-
from typing_extensions import Self
|
|
27
|
-
|
|
28
|
-
class ConvertPendingInputResponse(BaseModel):
|
|
29
|
-
"""
|
|
30
|
-
Reponse donnees manquantes.
|
|
31
|
-
""" # noqa: E501
|
|
32
|
-
status: Optional[StrictStr] = 'pending_input'
|
|
33
|
-
conversion_id: StrictStr
|
|
34
|
-
message: Optional[StrictStr] = 'Donnees manquantes requises pour la conformite'
|
|
35
|
-
extraction: ExtractionInfo
|
|
36
|
-
extracted_data: Dict[str, Any] = Field(description="Donnees extraites par OCR au format FacturXInvoice")
|
|
37
|
-
missing_fields: List[MissingField]
|
|
38
|
-
resume_url: StrictStr
|
|
39
|
-
expires_at: datetime
|
|
40
|
-
__properties: ClassVar[List[str]] = ["status", "conversion_id", "message", "extraction", "extracted_data", "missing_fields", "resume_url", "expires_at"]
|
|
41
|
-
|
|
42
|
-
model_config = ConfigDict(
|
|
43
|
-
populate_by_name=True,
|
|
44
|
-
validate_assignment=True,
|
|
45
|
-
protected_namespaces=(),
|
|
46
|
-
)
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
def to_str(self) -> str:
|
|
50
|
-
"""Returns the string representation of the model using alias"""
|
|
51
|
-
return pprint.pformat(self.model_dump(by_alias=True))
|
|
52
|
-
|
|
53
|
-
def to_json(self) -> str:
|
|
54
|
-
"""Returns the JSON representation of the model using alias"""
|
|
55
|
-
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
56
|
-
return json.dumps(self.to_dict())
|
|
57
|
-
|
|
58
|
-
@classmethod
|
|
59
|
-
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
60
|
-
"""Create an instance of ConvertPendingInputResponse from a JSON string"""
|
|
61
|
-
return cls.from_dict(json.loads(json_str))
|
|
62
|
-
|
|
63
|
-
def to_dict(self) -> Dict[str, Any]:
|
|
64
|
-
"""Return the dictionary representation of the model using alias.
|
|
65
|
-
|
|
66
|
-
This has the following differences from calling pydantic's
|
|
67
|
-
`self.model_dump(by_alias=True)`:
|
|
68
|
-
|
|
69
|
-
* `None` is only added to the output dict for nullable fields that
|
|
70
|
-
were set at model initialization. Other fields with value `None`
|
|
71
|
-
are ignored.
|
|
72
|
-
"""
|
|
73
|
-
excluded_fields: Set[str] = set([
|
|
74
|
-
])
|
|
75
|
-
|
|
76
|
-
_dict = self.model_dump(
|
|
77
|
-
by_alias=True,
|
|
78
|
-
exclude=excluded_fields,
|
|
79
|
-
exclude_none=True,
|
|
80
|
-
)
|
|
81
|
-
# override the default output from pydantic by calling `to_dict()` of extraction
|
|
82
|
-
if self.extraction:
|
|
83
|
-
_dict['extraction'] = self.extraction.to_dict()
|
|
84
|
-
# override the default output from pydantic by calling `to_dict()` of each item in missing_fields (list)
|
|
85
|
-
_items = []
|
|
86
|
-
if self.missing_fields:
|
|
87
|
-
for _item_missing_fields in self.missing_fields:
|
|
88
|
-
if _item_missing_fields:
|
|
89
|
-
_items.append(_item_missing_fields.to_dict())
|
|
90
|
-
_dict['missing_fields'] = _items
|
|
91
|
-
return _dict
|
|
92
|
-
|
|
93
|
-
@classmethod
|
|
94
|
-
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
95
|
-
"""Create an instance of ConvertPendingInputResponse from a dict"""
|
|
96
|
-
if obj is None:
|
|
97
|
-
return None
|
|
98
|
-
|
|
99
|
-
if not isinstance(obj, dict):
|
|
100
|
-
return cls.model_validate(obj)
|
|
101
|
-
|
|
102
|
-
_obj = cls.model_validate({
|
|
103
|
-
"status": obj.get("status") if obj.get("status") is not None else 'pending_input',
|
|
104
|
-
"conversion_id": obj.get("conversion_id"),
|
|
105
|
-
"message": obj.get("message") if obj.get("message") is not None else 'Donnees manquantes requises pour la conformite',
|
|
106
|
-
"extraction": ExtractionInfo.from_dict(obj["extraction"]) if obj.get("extraction") is not None else None,
|
|
107
|
-
"extracted_data": obj.get("extracted_data"),
|
|
108
|
-
"missing_fields": [MissingField.from_dict(_item) for _item in obj["missing_fields"]] if obj.get("missing_fields") is not None else None,
|
|
109
|
-
"resume_url": obj.get("resume_url"),
|
|
110
|
-
"expires_at": obj.get("expires_at")
|
|
111
|
-
})
|
|
112
|
-
return _obj
|
|
113
|
-
|
|
114
|
-
|