factpulse 1.0.9__py3-none-any.whl → 3.0.7__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 +275 -203
- factpulse/api/__init__.py +5 -3
- factpulse/api/afnorpdppa_api.py +559 -9
- factpulse/api/afnorpdppa_directory_service_api.py +4313 -66
- factpulse/api/afnorpdppa_flow_service_api.py +23 -23
- factpulse/api/chorus_pro_api.py +362 -404
- factpulse/api/{signature_lectronique_api.py → document_conversion_api.py} +519 -371
- factpulse/api/health_api.py +526 -0
- factpulse/api/invoice_processing_api.py +3437 -0
- factpulse/api/pdfxml_verification_api.py +1719 -0
- factpulse/api/{sant_api.py → user_api.py} +18 -17
- factpulse/api_client.py +6 -6
- factpulse/configuration.py +6 -4
- factpulse/exceptions.py +8 -5
- factpulse/models/__init__.py +133 -99
- factpulse/models/acknowledgment_status.py +38 -0
- factpulse/models/additional_document.py +115 -0
- factpulse/models/afnor_credentials.py +106 -0
- factpulse/models/afnor_destination.py +127 -0
- factpulse/models/afnor_health_check_response.py +91 -0
- factpulse/models/afnor_result.py +105 -0
- factpulse/models/allowance_charge.py +147 -0
- factpulse/models/allowance_reason_code.py +42 -0
- factpulse/models/allowance_total_amount.py +145 -0
- factpulse/models/amount.py +139 -0
- factpulse/models/amount_due.py +139 -0
- factpulse/models/api_error.py +104 -0
- factpulse/models/async_task_status.py +97 -0
- factpulse/models/base_amount.py +145 -0
- factpulse/models/bounding_box_schema.py +100 -0
- factpulse/models/celery_status.py +40 -0
- factpulse/models/certificate_info_response.py +24 -24
- factpulse/models/charge_total_amount.py +145 -0
- factpulse/models/chorus_pro_destination.py +108 -0
- factpulse/models/chorus_pro_result.py +101 -0
- factpulse/models/contact.py +113 -0
- factpulse/models/convert_error_response.py +105 -0
- factpulse/models/convert_pending_input_response.py +114 -0
- factpulse/models/convert_resume_request.py +87 -0
- factpulse/models/convert_success_response.py +126 -0
- factpulse/models/convert_validation_failed_response.py +120 -0
- factpulse/models/delivery_party.py +121 -0
- factpulse/models/destination.py +27 -27
- factpulse/models/document_type_info.py +91 -0
- factpulse/models/electronic_address.py +90 -0
- factpulse/models/enriched_invoice_info.py +133 -0
- factpulse/models/error_level.py +37 -0
- factpulse/models/error_source.py +43 -0
- factpulse/models/extraction_info.py +93 -0
- factpulse/models/factur_x_invoice.py +320 -0
- factpulse/models/factur_x_profile.py +39 -0
- factpulse/models/factur_xpdf_info.py +91 -0
- factpulse/models/facture_electronique_rest_api_schemas_chorus_pro_chorus_pro_credentials.py +95 -0
- factpulse/models/facture_electronique_rest_api_schemas_processing_chorus_pro_credentials.py +115 -0
- factpulse/models/field_status.py +40 -0
- factpulse/models/file_info.py +94 -0
- factpulse/models/files_info.py +106 -0
- factpulse/models/flow_direction.py +37 -0
- factpulse/models/flow_profile.py +38 -0
- factpulse/models/flow_summary.py +131 -0
- factpulse/models/flow_syntax.py +40 -0
- factpulse/models/flow_type.py +40 -0
- factpulse/models/generate_certificate_request.py +26 -26
- factpulse/models/generate_certificate_response.py +15 -15
- factpulse/models/get_chorus_pro_id_request.py +100 -0
- factpulse/models/get_chorus_pro_id_response.py +98 -0
- factpulse/models/get_invoice_request.py +98 -0
- factpulse/models/get_invoice_response.py +142 -0
- factpulse/models/get_structure_request.py +100 -0
- factpulse/models/get_structure_response.py +142 -0
- factpulse/models/global_allowance_amount.py +139 -0
- factpulse/models/gross_unit_price.py +145 -0
- factpulse/models/http_validation_error.py +2 -2
- factpulse/models/incoming_invoice.py +196 -0
- factpulse/models/incoming_supplier.py +144 -0
- factpulse/models/invoice_format.py +38 -0
- factpulse/models/invoice_line.py +354 -0
- factpulse/models/invoice_line_allowance_amount.py +145 -0
- factpulse/models/invoice_note.py +94 -0
- factpulse/models/invoice_references.py +194 -0
- factpulse/models/invoice_status.py +96 -0
- factpulse/models/invoice_totals.py +177 -0
- factpulse/models/invoice_totals_prepayment.py +145 -0
- factpulse/models/invoice_type_code.py +51 -0
- factpulse/models/invoicing_framework.py +110 -0
- factpulse/models/invoicing_framework_code.py +39 -0
- factpulse/models/line_net_amount.py +145 -0
- factpulse/models/line_total_amount.py +145 -0
- factpulse/models/mandatory_note_schema.py +124 -0
- factpulse/models/manual_rate.py +139 -0
- factpulse/models/manual_vat_rate.py +139 -0
- factpulse/models/missing_field.py +107 -0
- factpulse/models/operation_nature.py +49 -0
- factpulse/models/output_format.py +37 -0
- factpulse/models/page_dimensions_schema.py +89 -0
- factpulse/models/payee.py +168 -0
- factpulse/models/payment_card.py +99 -0
- factpulse/models/payment_means.py +41 -0
- factpulse/models/pdf_validation_result_api.py +169 -0
- factpulse/models/pdp_credentials.py +20 -13
- factpulse/models/percentage.py +145 -0
- factpulse/models/postal_address.py +134 -0
- factpulse/models/price_allowance_amount.py +145 -0
- factpulse/models/price_basis_quantity.py +145 -0
- factpulse/models/processing_options.py +94 -0
- factpulse/models/product_characteristic.py +89 -0
- factpulse/models/product_classification.py +101 -0
- factpulse/models/quantity.py +139 -0
- factpulse/models/recipient.py +167 -0
- factpulse/models/rounding_amount.py +145 -0
- factpulse/models/scheme_id.py +14 -8
- factpulse/models/search_flow_request.py +143 -0
- factpulse/models/search_flow_response.py +101 -0
- factpulse/models/search_services_response.py +101 -0
- factpulse/models/search_structure_request.py +119 -0
- factpulse/models/search_structure_response.py +101 -0
- factpulse/models/signature_info.py +6 -6
- factpulse/models/signature_info_api.py +122 -0
- factpulse/models/signature_parameters.py +133 -0
- factpulse/models/simplified_invoice_data.py +124 -0
- factpulse/models/structure_info.py +14 -14
- factpulse/models/structure_parameters.py +91 -0
- factpulse/models/structure_service.py +93 -0
- factpulse/models/submission_mode.py +38 -0
- factpulse/models/submit_complete_invoice_request.py +116 -0
- factpulse/models/submit_complete_invoice_response.py +145 -0
- factpulse/models/submit_flow_request.py +123 -0
- factpulse/models/submit_flow_response.py +109 -0
- factpulse/models/submit_gross_amount.py +139 -0
- factpulse/models/submit_invoice_request.py +176 -0
- factpulse/models/submit_invoice_response.py +103 -0
- factpulse/models/submit_net_amount.py +139 -0
- factpulse/models/submit_vat_amount.py +139 -0
- factpulse/models/supplementary_attachment.py +95 -0
- factpulse/models/supplier.py +225 -0
- factpulse/models/task_response.py +87 -0
- factpulse/models/tax_representative.py +95 -0
- factpulse/models/taxable_amount.py +139 -0
- factpulse/models/total_gross_amount.py +139 -0
- factpulse/models/total_net_amount.py +139 -0
- factpulse/models/total_vat_amount.py +139 -0
- factpulse/models/unit_net_price.py +139 -0
- factpulse/models/unit_of_measure.py +41 -0
- factpulse/models/validation_error.py +2 -2
- factpulse/models/validation_error_detail.py +107 -0
- factpulse/models/validation_error_loc_inner.py +2 -2
- factpulse/models/validation_error_response.py +87 -0
- factpulse/models/validation_info.py +105 -0
- factpulse/models/validation_success_response.py +87 -0
- factpulse/models/vat_accounting_code.py +39 -0
- factpulse/models/vat_amount.py +139 -0
- factpulse/models/vat_category.py +44 -0
- factpulse/models/vat_line.py +140 -0
- factpulse/models/vat_point_date_code.py +38 -0
- factpulse/models/vat_rate.py +145 -0
- factpulse/models/verification_success_response.py +135 -0
- factpulse/models/verified_field_schema.py +129 -0
- factpulse/rest.py +9 -4
- factpulse-3.0.7.dist-info/METADATA +292 -0
- factpulse-3.0.7.dist-info/RECORD +168 -0
- factpulse-3.0.7.dist-info/top_level.txt +2 -0
- factpulse_helpers/__init__.py +96 -0
- factpulse_helpers/client.py +2111 -0
- factpulse_helpers/exceptions.py +253 -0
- factpulse/api/processing_endpoints_unifis_api.py +0 -592
- factpulse/api/traitement_facture_api.py +0 -3439
- factpulse/api/utilisateur_api.py +0 -282
- factpulse/models/adresse_electronique.py +0 -90
- factpulse/models/adresse_postale.py +0 -120
- factpulse/models/body_ajouter_fichier_api_v1_chorus_pro_transverses_ajouter_fichier_post.py +0 -104
- factpulse/models/body_completer_facture_api_v1_chorus_pro_factures_completer_post.py +0 -104
- factpulse/models/body_lister_services_structure_api_v1_chorus_pro_structures_id_structure_cpp_services_get.py +0 -102
- factpulse/models/body_rechercher_factures_destinataire_api_v1_chorus_pro_factures_rechercher_destinataire_post.py +0 -104
- factpulse/models/body_rechercher_factures_fournisseur_api_v1_chorus_pro_factures_rechercher_fournisseur_post.py +0 -104
- factpulse/models/body_recycler_facture_api_v1_chorus_pro_factures_recycler_post.py +0 -104
- factpulse/models/body_telecharger_groupe_factures_api_v1_chorus_pro_factures_telecharger_groupe_post.py +0 -104
- factpulse/models/body_traiter_facture_recue_api_v1_chorus_pro_factures_traiter_facture_recue_post.py +0 -104
- factpulse/models/body_valideur_consulter_facture_api_v1_chorus_pro_factures_valideur_consulter_post.py +0 -104
- factpulse/models/body_valideur_rechercher_factures_api_v1_chorus_pro_factures_valideur_rechercher_post.py +0 -104
- factpulse/models/body_valideur_traiter_facture_api_v1_chorus_pro_factures_valideur_traiter_post.py +0 -104
- factpulse/models/cadre_de_facturation.py +0 -102
- factpulse/models/categorie_tva.py +0 -44
- factpulse/models/chorus_pro_credentials.py +0 -95
- 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 -116
- factpulse/models/destination_afnor.py +0 -127
- factpulse/models/destination_chorus_pro.py +0 -108
- factpulse/models/direction_flux.py +0 -37
- factpulse/models/donnees_facture_simplifiees.py +0 -124
- factpulse/models/facture_enrichie_info_input.py +0 -123
- factpulse/models/facture_enrichie_info_output.py +0 -133
- factpulse/models/facture_factur_x.py +0 -173
- factpulse/models/flux_resume.py +0 -131
- factpulse/models/format_sortie.py +0 -37
- factpulse/models/fournisseur.py +0 -146
- factpulse/models/information_signature_api.py +0 -122
- factpulse/models/ligne_de_poste.py +0 -188
- factpulse/models/ligne_de_poste_montant_remise_ht.py +0 -145
- factpulse/models/ligne_de_poste_montant_total_ligne_ht.py +0 -145
- factpulse/models/ligne_de_poste_taux_tva_manuel.py +0 -145
- factpulse/models/ligne_de_tva.py +0 -118
- factpulse/models/mode_depot.py +0 -38
- factpulse/models/mode_paiement.py +0 -41
- factpulse/models/montant_ht_total.py +0 -139
- factpulse/models/montant_total.py +0 -138
- factpulse/models/montant_total_acompte.py +0 -145
- factpulse/models/montant_total_montant_remise_globale_ttc.py +0 -145
- factpulse/models/montant_ttc_total.py +0 -139
- factpulse/models/montant_tva.py +0 -139
- factpulse/models/montantapayer.py +0 -139
- factpulse/models/montantbaseht.py +0 -139
- factpulse/models/montanthttotal.py +0 -139
- factpulse/models/montantttctotal.py +0 -139
- factpulse/models/montanttva.py +0 -139
- factpulse/models/montanttva1.py +0 -139
- factpulse/models/montantunitaireht.py +0 -139
- 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/quota_info.py +0 -95
- 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/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 -164
- factpulse/models/soumettre_facture_response.py +0 -103
- factpulse/models/statut_acquittement.py +0 -38
- factpulse/models/statut_facture.py +0 -96
- factpulse/models/statut_tache.py +0 -99
- factpulse/models/syntaxe_flux.py +0 -40
- factpulse/models/tauxmanuel.py +0 -139
- 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/utilisateur.py +0 -128
- factpulse-1.0.9.dist-info/METADATA +0 -182
- factpulse-1.0.9.dist-info/RECORD +0 -131
- factpulse-1.0.9.dist-info/top_level.txt +0 -1
- {factpulse-1.0.9.dist-info → factpulse-3.0.7.dist-info}/WHEEL +0 -0
- {factpulse-1.0.9.dist-info → factpulse-3.0.7.dist-info}/licenses/LICENSE +0 -0
factpulse/__init__.py
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
# flake8: noqa
|
|
4
4
|
|
|
5
5
|
"""
|
|
6
|
-
|
|
6
|
+
FactPulse REST API
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
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/
|
|
9
9
|
|
|
10
10
|
The version of the OpenAPI document: 1.0.0
|
|
11
11
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "
|
|
17
|
+
__version__ = "3.0.7"
|
|
18
18
|
|
|
19
19
|
# Define package exports
|
|
20
20
|
__all__ = [
|
|
@@ -22,9 +22,11 @@ __all__ = [
|
|
|
22
22
|
"AFNORPDPPADirectoryServiceApi",
|
|
23
23
|
"AFNORPDPPAFlowServiceApi",
|
|
24
24
|
"ChorusProApi",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
25
|
+
"DocumentConversionApi",
|
|
26
|
+
"HealthApi",
|
|
27
|
+
"InvoiceProcessingApi",
|
|
28
|
+
"PDFXMLVerificationApi",
|
|
29
|
+
"UserApi",
|
|
28
30
|
"ApiResponse",
|
|
29
31
|
"ApiClient",
|
|
30
32
|
"Configuration",
|
|
@@ -34,114 +36,148 @@ __all__ = [
|
|
|
34
36
|
"ApiKeyError",
|
|
35
37
|
"ApiAttributeError",
|
|
36
38
|
"ApiException",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
39
|
+
"AFNORCredentials",
|
|
40
|
+
"AFNORDestination",
|
|
41
|
+
"AFNORHealthCheckResponse",
|
|
42
|
+
"AFNORResult",
|
|
43
|
+
"APIError",
|
|
44
|
+
"AcknowledgmentStatus",
|
|
45
|
+
"AdditionalDocument",
|
|
46
|
+
"AllowanceCharge",
|
|
47
|
+
"AllowanceReasonCode",
|
|
48
|
+
"AllowanceTotalAmount",
|
|
49
|
+
"Amount",
|
|
50
|
+
"AmountDue",
|
|
51
|
+
"AsyncTaskStatus",
|
|
52
|
+
"BaseAmount",
|
|
53
|
+
"BoundingBoxSchema",
|
|
54
|
+
"CeleryStatus",
|
|
52
55
|
"CertificateInfoResponse",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
56
|
+
"ChargeTotalAmount",
|
|
57
|
+
"ChorusProDestination",
|
|
58
|
+
"ChorusProResult",
|
|
59
|
+
"Contact",
|
|
60
|
+
"ConvertErrorResponse",
|
|
61
|
+
"ConvertPendingInputResponse",
|
|
62
|
+
"ConvertResumeRequest",
|
|
63
|
+
"ConvertSuccessResponse",
|
|
64
|
+
"ConvertValidationFailedResponse",
|
|
65
|
+
"DeliveryParty",
|
|
63
66
|
"Destination",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
67
|
+
"DocumentTypeInfo",
|
|
68
|
+
"ElectronicAddress",
|
|
69
|
+
"EnrichedInvoiceInfo",
|
|
70
|
+
"ErrorLevel",
|
|
71
|
+
"ErrorSource",
|
|
72
|
+
"ExtractionInfo",
|
|
73
|
+
"FacturXInvoice",
|
|
74
|
+
"FacturXPDFInfo",
|
|
75
|
+
"FacturXProfile",
|
|
76
|
+
"FactureElectroniqueRestApiSchemasChorusProChorusProCredentials",
|
|
77
|
+
"FactureElectroniqueRestApiSchemasProcessingChorusProCredentials",
|
|
78
|
+
"FieldStatus",
|
|
79
|
+
"FileInfo",
|
|
80
|
+
"FilesInfo",
|
|
81
|
+
"FlowDirection",
|
|
82
|
+
"FlowProfile",
|
|
83
|
+
"FlowSummary",
|
|
84
|
+
"FlowSyntax",
|
|
85
|
+
"FlowType",
|
|
74
86
|
"GenerateCertificateRequest",
|
|
75
87
|
"GenerateCertificateResponse",
|
|
88
|
+
"GetChorusProIdRequest",
|
|
89
|
+
"GetChorusProIdResponse",
|
|
90
|
+
"GetInvoiceRequest",
|
|
91
|
+
"GetInvoiceResponse",
|
|
92
|
+
"GetStructureRequest",
|
|
93
|
+
"GetStructureResponse",
|
|
94
|
+
"GlobalAllowanceAmount",
|
|
95
|
+
"GrossUnitPrice",
|
|
76
96
|
"HTTPValidationError",
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"ObtenirIdChorusProResponse",
|
|
100
|
-
"OptionsProcessing",
|
|
101
|
-
"PDFFacturXInfo",
|
|
97
|
+
"IncomingInvoice",
|
|
98
|
+
"IncomingSupplier",
|
|
99
|
+
"InvoiceFormat",
|
|
100
|
+
"InvoiceLine",
|
|
101
|
+
"InvoiceLineAllowanceAmount",
|
|
102
|
+
"InvoiceNote",
|
|
103
|
+
"InvoiceReferences",
|
|
104
|
+
"InvoiceStatus",
|
|
105
|
+
"InvoiceTotals",
|
|
106
|
+
"InvoiceTotalsPrepayment",
|
|
107
|
+
"InvoiceTypeCode",
|
|
108
|
+
"InvoicingFramework",
|
|
109
|
+
"InvoicingFrameworkCode",
|
|
110
|
+
"LineNetAmount",
|
|
111
|
+
"LineTotalAmount",
|
|
112
|
+
"MandatoryNoteSchema",
|
|
113
|
+
"ManualRate",
|
|
114
|
+
"ManualVatRate",
|
|
115
|
+
"MissingField",
|
|
116
|
+
"OperationNature",
|
|
117
|
+
"OutputFormat",
|
|
118
|
+
"PDFValidationResultAPI",
|
|
102
119
|
"PDPCredentials",
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"ReponseTache",
|
|
118
|
-
"ReponseValidationErreur",
|
|
119
|
-
"ReponseValidationSucces",
|
|
120
|
-
"RequeteRechercheFlux",
|
|
121
|
-
"RequeteSoumissionFlux",
|
|
122
|
-
"ResultatAFNOR",
|
|
123
|
-
"ResultatChorusPro",
|
|
124
|
-
"ResultatValidationPDFAPI",
|
|
120
|
+
"PageDimensionsSchema",
|
|
121
|
+
"Payee",
|
|
122
|
+
"PaymentCard",
|
|
123
|
+
"PaymentMeans",
|
|
124
|
+
"Percentage",
|
|
125
|
+
"PostalAddress",
|
|
126
|
+
"PriceAllowanceAmount",
|
|
127
|
+
"PriceBasisQuantity",
|
|
128
|
+
"ProcessingOptions",
|
|
129
|
+
"ProductCharacteristic",
|
|
130
|
+
"ProductClassification",
|
|
131
|
+
"Quantity",
|
|
132
|
+
"Recipient",
|
|
133
|
+
"RoundingAmount",
|
|
125
134
|
"SchemeID",
|
|
126
|
-
"
|
|
135
|
+
"SearchFlowRequest",
|
|
136
|
+
"SearchFlowResponse",
|
|
137
|
+
"SearchServicesResponse",
|
|
138
|
+
"SearchStructureRequest",
|
|
139
|
+
"SearchStructureResponse",
|
|
127
140
|
"SignatureInfo",
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"SoumettreFactureResponse",
|
|
132
|
-
"StatutAcquittement",
|
|
133
|
-
"StatutFacture",
|
|
134
|
-
"StatutTache",
|
|
141
|
+
"SignatureInfoAPI",
|
|
142
|
+
"SignatureParameters",
|
|
143
|
+
"SimplifiedInvoiceData",
|
|
135
144
|
"StructureInfo",
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
145
|
+
"StructureParameters",
|
|
146
|
+
"StructureService",
|
|
147
|
+
"SubmissionMode",
|
|
148
|
+
"SubmitCompleteInvoiceRequest",
|
|
149
|
+
"SubmitCompleteInvoiceResponse",
|
|
150
|
+
"SubmitFlowRequest",
|
|
151
|
+
"SubmitFlowResponse",
|
|
152
|
+
"SubmitGrossAmount",
|
|
153
|
+
"SubmitInvoiceRequest",
|
|
154
|
+
"SubmitInvoiceResponse",
|
|
155
|
+
"SubmitNetAmount",
|
|
156
|
+
"SubmitVatAmount",
|
|
157
|
+
"SupplementaryAttachment",
|
|
158
|
+
"Supplier",
|
|
159
|
+
"TaskResponse",
|
|
160
|
+
"TaxRepresentative",
|
|
161
|
+
"TaxableAmount",
|
|
162
|
+
"TotalGrossAmount",
|
|
163
|
+
"TotalNetAmount",
|
|
164
|
+
"TotalVATAmount",
|
|
165
|
+
"UnitNetPrice",
|
|
166
|
+
"UnitOfMeasure",
|
|
167
|
+
"VATAccountingCode",
|
|
168
|
+
"VATAmount",
|
|
169
|
+
"VATCategory",
|
|
170
|
+
"VATLine",
|
|
171
|
+
"VATPointDateCode",
|
|
143
172
|
"ValidationError",
|
|
173
|
+
"ValidationErrorDetail",
|
|
144
174
|
"ValidationErrorLocInner",
|
|
175
|
+
"ValidationErrorResponse",
|
|
176
|
+
"ValidationInfo",
|
|
177
|
+
"ValidationSuccessResponse",
|
|
178
|
+
"VatRate",
|
|
179
|
+
"VerificationSuccessResponse",
|
|
180
|
+
"VerifiedFieldSchema",
|
|
145
181
|
]
|
|
146
182
|
|
|
147
183
|
# import apis into sdk package
|
|
@@ -149,9 +185,11 @@ from factpulse.api.afnorpdppa_api import AFNORPDPPAApi as AFNORPDPPAApi
|
|
|
149
185
|
from factpulse.api.afnorpdppa_directory_service_api import AFNORPDPPADirectoryServiceApi as AFNORPDPPADirectoryServiceApi
|
|
150
186
|
from factpulse.api.afnorpdppa_flow_service_api import AFNORPDPPAFlowServiceApi as AFNORPDPPAFlowServiceApi
|
|
151
187
|
from factpulse.api.chorus_pro_api import ChorusProApi as ChorusProApi
|
|
152
|
-
from factpulse.api.
|
|
153
|
-
from factpulse.api.
|
|
154
|
-
from factpulse.api.
|
|
188
|
+
from factpulse.api.document_conversion_api import DocumentConversionApi as DocumentConversionApi
|
|
189
|
+
from factpulse.api.health_api import HealthApi as HealthApi
|
|
190
|
+
from factpulse.api.invoice_processing_api import InvoiceProcessingApi as InvoiceProcessingApi
|
|
191
|
+
from factpulse.api.pdfxml_verification_api import PDFXMLVerificationApi as PDFXMLVerificationApi
|
|
192
|
+
from factpulse.api.user_api import UserApi as UserApi
|
|
155
193
|
|
|
156
194
|
# import ApiClient
|
|
157
195
|
from factpulse.api_response import ApiResponse as ApiResponse
|
|
@@ -165,112 +203,146 @@ from factpulse.exceptions import ApiAttributeError as ApiAttributeError
|
|
|
165
203
|
from factpulse.exceptions import ApiException as ApiException
|
|
166
204
|
|
|
167
205
|
# import models into sdk package
|
|
168
|
-
from factpulse.models.
|
|
169
|
-
from factpulse.models.
|
|
170
|
-
from factpulse.models.
|
|
171
|
-
from factpulse.models.
|
|
172
|
-
from factpulse.models.
|
|
173
|
-
from factpulse.models.
|
|
174
|
-
from factpulse.models.
|
|
175
|
-
from factpulse.models.
|
|
176
|
-
from factpulse.models.
|
|
177
|
-
from factpulse.models.
|
|
178
|
-
from factpulse.models.
|
|
179
|
-
from factpulse.models.
|
|
180
|
-
from factpulse.models.
|
|
181
|
-
from factpulse.models.
|
|
182
|
-
from factpulse.models.
|
|
206
|
+
from factpulse.models.afnor_credentials import AFNORCredentials as AFNORCredentials
|
|
207
|
+
from factpulse.models.afnor_destination import AFNORDestination as AFNORDestination
|
|
208
|
+
from factpulse.models.afnor_health_check_response import AFNORHealthCheckResponse as AFNORHealthCheckResponse
|
|
209
|
+
from factpulse.models.afnor_result import AFNORResult as AFNORResult
|
|
210
|
+
from factpulse.models.api_error import APIError as APIError
|
|
211
|
+
from factpulse.models.acknowledgment_status import AcknowledgmentStatus as AcknowledgmentStatus
|
|
212
|
+
from factpulse.models.additional_document import AdditionalDocument as AdditionalDocument
|
|
213
|
+
from factpulse.models.allowance_charge import AllowanceCharge as AllowanceCharge
|
|
214
|
+
from factpulse.models.allowance_reason_code import AllowanceReasonCode as AllowanceReasonCode
|
|
215
|
+
from factpulse.models.allowance_total_amount import AllowanceTotalAmount as AllowanceTotalAmount
|
|
216
|
+
from factpulse.models.amount import Amount as Amount
|
|
217
|
+
from factpulse.models.amount_due import AmountDue as AmountDue
|
|
218
|
+
from factpulse.models.async_task_status import AsyncTaskStatus as AsyncTaskStatus
|
|
219
|
+
from factpulse.models.base_amount import BaseAmount as BaseAmount
|
|
220
|
+
from factpulse.models.bounding_box_schema import BoundingBoxSchema as BoundingBoxSchema
|
|
221
|
+
from factpulse.models.celery_status import CeleryStatus as CeleryStatus
|
|
183
222
|
from factpulse.models.certificate_info_response import CertificateInfoResponse as CertificateInfoResponse
|
|
184
|
-
from factpulse.models.
|
|
185
|
-
from factpulse.models.
|
|
186
|
-
from factpulse.models.
|
|
187
|
-
from factpulse.models.
|
|
188
|
-
from factpulse.models.
|
|
189
|
-
from factpulse.models.
|
|
190
|
-
from factpulse.models.
|
|
191
|
-
from factpulse.models.
|
|
192
|
-
from factpulse.models.
|
|
193
|
-
from factpulse.models.
|
|
223
|
+
from factpulse.models.charge_total_amount import ChargeTotalAmount as ChargeTotalAmount
|
|
224
|
+
from factpulse.models.chorus_pro_destination import ChorusProDestination as ChorusProDestination
|
|
225
|
+
from factpulse.models.chorus_pro_result import ChorusProResult as ChorusProResult
|
|
226
|
+
from factpulse.models.contact import Contact as Contact
|
|
227
|
+
from factpulse.models.convert_error_response import ConvertErrorResponse as ConvertErrorResponse
|
|
228
|
+
from factpulse.models.convert_pending_input_response import ConvertPendingInputResponse as ConvertPendingInputResponse
|
|
229
|
+
from factpulse.models.convert_resume_request import ConvertResumeRequest as ConvertResumeRequest
|
|
230
|
+
from factpulse.models.convert_success_response import ConvertSuccessResponse as ConvertSuccessResponse
|
|
231
|
+
from factpulse.models.convert_validation_failed_response import ConvertValidationFailedResponse as ConvertValidationFailedResponse
|
|
232
|
+
from factpulse.models.delivery_party import DeliveryParty as DeliveryParty
|
|
194
233
|
from factpulse.models.destination import Destination as Destination
|
|
195
|
-
from factpulse.models.
|
|
196
|
-
from factpulse.models.
|
|
197
|
-
from factpulse.models.
|
|
198
|
-
from factpulse.models.
|
|
199
|
-
from factpulse.models.
|
|
200
|
-
from factpulse.models.
|
|
201
|
-
from factpulse.models.
|
|
202
|
-
from factpulse.models.
|
|
203
|
-
from factpulse.models.
|
|
204
|
-
from factpulse.models.
|
|
234
|
+
from factpulse.models.document_type_info import DocumentTypeInfo as DocumentTypeInfo
|
|
235
|
+
from factpulse.models.electronic_address import ElectronicAddress as ElectronicAddress
|
|
236
|
+
from factpulse.models.enriched_invoice_info import EnrichedInvoiceInfo as EnrichedInvoiceInfo
|
|
237
|
+
from factpulse.models.error_level import ErrorLevel as ErrorLevel
|
|
238
|
+
from factpulse.models.error_source import ErrorSource as ErrorSource
|
|
239
|
+
from factpulse.models.extraction_info import ExtractionInfo as ExtractionInfo
|
|
240
|
+
from factpulse.models.factur_x_invoice import FacturXInvoice as FacturXInvoice
|
|
241
|
+
from factpulse.models.factur_xpdf_info import FacturXPDFInfo as FacturXPDFInfo
|
|
242
|
+
from factpulse.models.factur_x_profile import FacturXProfile as FacturXProfile
|
|
243
|
+
from factpulse.models.facture_electronique_rest_api_schemas_chorus_pro_chorus_pro_credentials import FactureElectroniqueRestApiSchemasChorusProChorusProCredentials as FactureElectroniqueRestApiSchemasChorusProChorusProCredentials
|
|
244
|
+
from factpulse.models.facture_electronique_rest_api_schemas_processing_chorus_pro_credentials import FactureElectroniqueRestApiSchemasProcessingChorusProCredentials as FactureElectroniqueRestApiSchemasProcessingChorusProCredentials
|
|
245
|
+
from factpulse.models.field_status import FieldStatus as FieldStatus
|
|
246
|
+
from factpulse.models.file_info import FileInfo as FileInfo
|
|
247
|
+
from factpulse.models.files_info import FilesInfo as FilesInfo
|
|
248
|
+
from factpulse.models.flow_direction import FlowDirection as FlowDirection
|
|
249
|
+
from factpulse.models.flow_profile import FlowProfile as FlowProfile
|
|
250
|
+
from factpulse.models.flow_summary import FlowSummary as FlowSummary
|
|
251
|
+
from factpulse.models.flow_syntax import FlowSyntax as FlowSyntax
|
|
252
|
+
from factpulse.models.flow_type import FlowType as FlowType
|
|
205
253
|
from factpulse.models.generate_certificate_request import GenerateCertificateRequest as GenerateCertificateRequest
|
|
206
254
|
from factpulse.models.generate_certificate_response import GenerateCertificateResponse as GenerateCertificateResponse
|
|
255
|
+
from factpulse.models.get_chorus_pro_id_request import GetChorusProIdRequest as GetChorusProIdRequest
|
|
256
|
+
from factpulse.models.get_chorus_pro_id_response import GetChorusProIdResponse as GetChorusProIdResponse
|
|
257
|
+
from factpulse.models.get_invoice_request import GetInvoiceRequest as GetInvoiceRequest
|
|
258
|
+
from factpulse.models.get_invoice_response import GetInvoiceResponse as GetInvoiceResponse
|
|
259
|
+
from factpulse.models.get_structure_request import GetStructureRequest as GetStructureRequest
|
|
260
|
+
from factpulse.models.get_structure_response import GetStructureResponse as GetStructureResponse
|
|
261
|
+
from factpulse.models.global_allowance_amount import GlobalAllowanceAmount as GlobalAllowanceAmount
|
|
262
|
+
from factpulse.models.gross_unit_price import GrossUnitPrice as GrossUnitPrice
|
|
207
263
|
from factpulse.models.http_validation_error import HTTPValidationError as HTTPValidationError
|
|
208
|
-
from factpulse.models.
|
|
209
|
-
from factpulse.models.
|
|
210
|
-
from factpulse.models.
|
|
211
|
-
from factpulse.models.
|
|
212
|
-
from factpulse.models.
|
|
213
|
-
from factpulse.models.
|
|
214
|
-
from factpulse.models.
|
|
215
|
-
from factpulse.models.
|
|
216
|
-
from factpulse.models.
|
|
217
|
-
from factpulse.models.
|
|
218
|
-
from factpulse.models.
|
|
219
|
-
from factpulse.models.
|
|
220
|
-
from factpulse.models.
|
|
221
|
-
from factpulse.models.
|
|
222
|
-
from factpulse.models.
|
|
223
|
-
from factpulse.models.
|
|
224
|
-
from factpulse.models.
|
|
225
|
-
from factpulse.models.
|
|
226
|
-
from factpulse.models.
|
|
227
|
-
from factpulse.models.
|
|
228
|
-
from factpulse.models.
|
|
229
|
-
from factpulse.models.
|
|
230
|
-
from factpulse.models.obtenir_id_chorus_pro_response import ObtenirIdChorusProResponse as ObtenirIdChorusProResponse
|
|
231
|
-
from factpulse.models.options_processing import OptionsProcessing as OptionsProcessing
|
|
232
|
-
from factpulse.models.pdf_factur_x_info import PDFFacturXInfo as PDFFacturXInfo
|
|
264
|
+
from factpulse.models.incoming_invoice import IncomingInvoice as IncomingInvoice
|
|
265
|
+
from factpulse.models.incoming_supplier import IncomingSupplier as IncomingSupplier
|
|
266
|
+
from factpulse.models.invoice_format import InvoiceFormat as InvoiceFormat
|
|
267
|
+
from factpulse.models.invoice_line import InvoiceLine as InvoiceLine
|
|
268
|
+
from factpulse.models.invoice_line_allowance_amount import InvoiceLineAllowanceAmount as InvoiceLineAllowanceAmount
|
|
269
|
+
from factpulse.models.invoice_note import InvoiceNote as InvoiceNote
|
|
270
|
+
from factpulse.models.invoice_references import InvoiceReferences as InvoiceReferences
|
|
271
|
+
from factpulse.models.invoice_status import InvoiceStatus as InvoiceStatus
|
|
272
|
+
from factpulse.models.invoice_totals import InvoiceTotals as InvoiceTotals
|
|
273
|
+
from factpulse.models.invoice_totals_prepayment import InvoiceTotalsPrepayment as InvoiceTotalsPrepayment
|
|
274
|
+
from factpulse.models.invoice_type_code import InvoiceTypeCode as InvoiceTypeCode
|
|
275
|
+
from factpulse.models.invoicing_framework import InvoicingFramework as InvoicingFramework
|
|
276
|
+
from factpulse.models.invoicing_framework_code import InvoicingFrameworkCode as InvoicingFrameworkCode
|
|
277
|
+
from factpulse.models.line_net_amount import LineNetAmount as LineNetAmount
|
|
278
|
+
from factpulse.models.line_total_amount import LineTotalAmount as LineTotalAmount
|
|
279
|
+
from factpulse.models.mandatory_note_schema import MandatoryNoteSchema as MandatoryNoteSchema
|
|
280
|
+
from factpulse.models.manual_rate import ManualRate as ManualRate
|
|
281
|
+
from factpulse.models.manual_vat_rate import ManualVatRate as ManualVatRate
|
|
282
|
+
from factpulse.models.missing_field import MissingField as MissingField
|
|
283
|
+
from factpulse.models.operation_nature import OperationNature as OperationNature
|
|
284
|
+
from factpulse.models.output_format import OutputFormat as OutputFormat
|
|
285
|
+
from factpulse.models.pdf_validation_result_api import PDFValidationResultAPI as PDFValidationResultAPI
|
|
233
286
|
from factpulse.models.pdp_credentials import PDPCredentials as PDPCredentials
|
|
234
|
-
from factpulse.models.
|
|
235
|
-
from factpulse.models.
|
|
236
|
-
from factpulse.models.
|
|
237
|
-
from factpulse.models.
|
|
238
|
-
from factpulse.models.
|
|
239
|
-
from factpulse.models.
|
|
240
|
-
from factpulse.models.
|
|
241
|
-
from factpulse.models.
|
|
242
|
-
from factpulse.models.
|
|
243
|
-
from factpulse.models.
|
|
244
|
-
from factpulse.models.
|
|
245
|
-
from factpulse.models.
|
|
246
|
-
from factpulse.models.
|
|
247
|
-
from factpulse.models.
|
|
248
|
-
from factpulse.models.reponse_tache import ReponseTache as ReponseTache
|
|
249
|
-
from factpulse.models.reponse_validation_erreur import ReponseValidationErreur as ReponseValidationErreur
|
|
250
|
-
from factpulse.models.reponse_validation_succes import ReponseValidationSucces as ReponseValidationSucces
|
|
251
|
-
from factpulse.models.requete_recherche_flux import RequeteRechercheFlux as RequeteRechercheFlux
|
|
252
|
-
from factpulse.models.requete_soumission_flux import RequeteSoumissionFlux as RequeteSoumissionFlux
|
|
253
|
-
from factpulse.models.resultat_afnor import ResultatAFNOR as ResultatAFNOR
|
|
254
|
-
from factpulse.models.resultat_chorus_pro import ResultatChorusPro as ResultatChorusPro
|
|
255
|
-
from factpulse.models.resultat_validation_pdfapi import ResultatValidationPDFAPI as ResultatValidationPDFAPI
|
|
287
|
+
from factpulse.models.page_dimensions_schema import PageDimensionsSchema as PageDimensionsSchema
|
|
288
|
+
from factpulse.models.payee import Payee as Payee
|
|
289
|
+
from factpulse.models.payment_card import PaymentCard as PaymentCard
|
|
290
|
+
from factpulse.models.payment_means import PaymentMeans as PaymentMeans
|
|
291
|
+
from factpulse.models.percentage import Percentage as Percentage
|
|
292
|
+
from factpulse.models.postal_address import PostalAddress as PostalAddress
|
|
293
|
+
from factpulse.models.price_allowance_amount import PriceAllowanceAmount as PriceAllowanceAmount
|
|
294
|
+
from factpulse.models.price_basis_quantity import PriceBasisQuantity as PriceBasisQuantity
|
|
295
|
+
from factpulse.models.processing_options import ProcessingOptions as ProcessingOptions
|
|
296
|
+
from factpulse.models.product_characteristic import ProductCharacteristic as ProductCharacteristic
|
|
297
|
+
from factpulse.models.product_classification import ProductClassification as ProductClassification
|
|
298
|
+
from factpulse.models.quantity import Quantity as Quantity
|
|
299
|
+
from factpulse.models.recipient import Recipient as Recipient
|
|
300
|
+
from factpulse.models.rounding_amount import RoundingAmount as RoundingAmount
|
|
256
301
|
from factpulse.models.scheme_id import SchemeID as SchemeID
|
|
257
|
-
from factpulse.models.
|
|
302
|
+
from factpulse.models.search_flow_request import SearchFlowRequest as SearchFlowRequest
|
|
303
|
+
from factpulse.models.search_flow_response import SearchFlowResponse as SearchFlowResponse
|
|
304
|
+
from factpulse.models.search_services_response import SearchServicesResponse as SearchServicesResponse
|
|
305
|
+
from factpulse.models.search_structure_request import SearchStructureRequest as SearchStructureRequest
|
|
306
|
+
from factpulse.models.search_structure_response import SearchStructureResponse as SearchStructureResponse
|
|
258
307
|
from factpulse.models.signature_info import SignatureInfo as SignatureInfo
|
|
259
|
-
from factpulse.models.
|
|
260
|
-
from factpulse.models.
|
|
261
|
-
from factpulse.models.
|
|
262
|
-
from factpulse.models.soumettre_facture_response import SoumettreFactureResponse as SoumettreFactureResponse
|
|
263
|
-
from factpulse.models.statut_acquittement import StatutAcquittement as StatutAcquittement
|
|
264
|
-
from factpulse.models.statut_facture import StatutFacture as StatutFacture
|
|
265
|
-
from factpulse.models.statut_tache import StatutTache as StatutTache
|
|
308
|
+
from factpulse.models.signature_info_api import SignatureInfoAPI as SignatureInfoAPI
|
|
309
|
+
from factpulse.models.signature_parameters import SignatureParameters as SignatureParameters
|
|
310
|
+
from factpulse.models.simplified_invoice_data import SimplifiedInvoiceData as SimplifiedInvoiceData
|
|
266
311
|
from factpulse.models.structure_info import StructureInfo as StructureInfo
|
|
267
|
-
from factpulse.models.
|
|
268
|
-
from factpulse.models.
|
|
269
|
-
from factpulse.models.
|
|
270
|
-
from factpulse.models.
|
|
271
|
-
from factpulse.models.
|
|
272
|
-
from factpulse.models.
|
|
273
|
-
from factpulse.models.
|
|
312
|
+
from factpulse.models.structure_parameters import StructureParameters as StructureParameters
|
|
313
|
+
from factpulse.models.structure_service import StructureService as StructureService
|
|
314
|
+
from factpulse.models.submission_mode import SubmissionMode as SubmissionMode
|
|
315
|
+
from factpulse.models.submit_complete_invoice_request import SubmitCompleteInvoiceRequest as SubmitCompleteInvoiceRequest
|
|
316
|
+
from factpulse.models.submit_complete_invoice_response import SubmitCompleteInvoiceResponse as SubmitCompleteInvoiceResponse
|
|
317
|
+
from factpulse.models.submit_flow_request import SubmitFlowRequest as SubmitFlowRequest
|
|
318
|
+
from factpulse.models.submit_flow_response import SubmitFlowResponse as SubmitFlowResponse
|
|
319
|
+
from factpulse.models.submit_gross_amount import SubmitGrossAmount as SubmitGrossAmount
|
|
320
|
+
from factpulse.models.submit_invoice_request import SubmitInvoiceRequest as SubmitInvoiceRequest
|
|
321
|
+
from factpulse.models.submit_invoice_response import SubmitInvoiceResponse as SubmitInvoiceResponse
|
|
322
|
+
from factpulse.models.submit_net_amount import SubmitNetAmount as SubmitNetAmount
|
|
323
|
+
from factpulse.models.submit_vat_amount import SubmitVatAmount as SubmitVatAmount
|
|
324
|
+
from factpulse.models.supplementary_attachment import SupplementaryAttachment as SupplementaryAttachment
|
|
325
|
+
from factpulse.models.supplier import Supplier as Supplier
|
|
326
|
+
from factpulse.models.task_response import TaskResponse as TaskResponse
|
|
327
|
+
from factpulse.models.tax_representative import TaxRepresentative as TaxRepresentative
|
|
328
|
+
from factpulse.models.taxable_amount import TaxableAmount as TaxableAmount
|
|
329
|
+
from factpulse.models.total_gross_amount import TotalGrossAmount as TotalGrossAmount
|
|
330
|
+
from factpulse.models.total_net_amount import TotalNetAmount as TotalNetAmount
|
|
331
|
+
from factpulse.models.total_vat_amount import TotalVATAmount as TotalVATAmount
|
|
332
|
+
from factpulse.models.unit_net_price import UnitNetPrice as UnitNetPrice
|
|
333
|
+
from factpulse.models.unit_of_measure import UnitOfMeasure as UnitOfMeasure
|
|
334
|
+
from factpulse.models.vat_accounting_code import VATAccountingCode as VATAccountingCode
|
|
335
|
+
from factpulse.models.vat_amount import VATAmount as VATAmount
|
|
336
|
+
from factpulse.models.vat_category import VATCategory as VATCategory
|
|
337
|
+
from factpulse.models.vat_line import VATLine as VATLine
|
|
338
|
+
from factpulse.models.vat_point_date_code import VATPointDateCode as VATPointDateCode
|
|
274
339
|
from factpulse.models.validation_error import ValidationError as ValidationError
|
|
340
|
+
from factpulse.models.validation_error_detail import ValidationErrorDetail as ValidationErrorDetail
|
|
275
341
|
from factpulse.models.validation_error_loc_inner import ValidationErrorLocInner as ValidationErrorLocInner
|
|
342
|
+
from factpulse.models.validation_error_response import ValidationErrorResponse as ValidationErrorResponse
|
|
343
|
+
from factpulse.models.validation_info import ValidationInfo as ValidationInfo
|
|
344
|
+
from factpulse.models.validation_success_response import ValidationSuccessResponse as ValidationSuccessResponse
|
|
345
|
+
from factpulse.models.vat_rate import VatRate as VatRate
|
|
346
|
+
from factpulse.models.verification_success_response import VerificationSuccessResponse as VerificationSuccessResponse
|
|
347
|
+
from factpulse.models.verified_field_schema import VerifiedFieldSchema as VerifiedFieldSchema
|
|
276
348
|
|
factpulse/api/__init__.py
CHANGED
|
@@ -5,7 +5,9 @@ from factpulse.api.afnorpdppa_api import AFNORPDPPAApi
|
|
|
5
5
|
from factpulse.api.afnorpdppa_directory_service_api import AFNORPDPPADirectoryServiceApi
|
|
6
6
|
from factpulse.api.afnorpdppa_flow_service_api import AFNORPDPPAFlowServiceApi
|
|
7
7
|
from factpulse.api.chorus_pro_api import ChorusProApi
|
|
8
|
-
from factpulse.api.
|
|
9
|
-
from factpulse.api.
|
|
10
|
-
from factpulse.api.
|
|
8
|
+
from factpulse.api.document_conversion_api import DocumentConversionApi
|
|
9
|
+
from factpulse.api.health_api import HealthApi
|
|
10
|
+
from factpulse.api.invoice_processing_api import InvoiceProcessingApi
|
|
11
|
+
from factpulse.api.pdfxml_verification_api import PDFXMLVerificationApi
|
|
12
|
+
from factpulse.api.user_api import UserApi
|
|
11
13
|
|