factpulse 1.0.6__py3-none-any.whl → 2.0.2__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.
- factpulse/__init__.py +17 -23
- factpulse/api/__init__.py +0 -2
- factpulse/api/afnorpdppa_directory_service_api.py +4293 -64
- factpulse/api_client.py +1 -1
- factpulse/configuration.py +1 -1
- factpulse/exceptions.py +5 -2
- factpulse/models/__init__.py +8 -9
- factpulse/models/ligne_de_poste.py +6 -6
- factpulse/models/ligne_de_tva.py +6 -6
- factpulse/models/{montantapayer.py → montant_a_payer.py} +4 -4
- factpulse/models/{montantbaseht.py → montant_base_ht.py} +4 -4
- factpulse/models/montant_ht_total.py +3 -3
- factpulse/models/{montantttctotal.py → montant_ht_total1.py} +8 -8
- factpulse/models/{montant_total_montant_remise_globale_ttc.py → montant_remise_globale_ttc.py} +5 -5
- factpulse/models/montant_total.py +15 -15
- factpulse/models/{ligne_de_poste_montant_total_ligne_ht.py → montant_total_ligne_ht.py} +5 -5
- factpulse/models/montant_ttc_total.py +3 -3
- factpulse/models/{montanttva.py → montant_ttc_total1.py} +8 -8
- factpulse/models/montant_tva.py +3 -3
- factpulse/models/{montanttva1.py → montant_tva1.py} +4 -4
- factpulse/models/{montantunitaireht.py → montant_unitaire_ht.py} +4 -4
- factpulse/models/options_processing.py +4 -13
- factpulse/models/soumettre_facture_request.py +18 -6
- factpulse/models/statut_tache.py +2 -5
- {factpulse-1.0.6.dist-info → factpulse-2.0.2.dist-info}/METADATA +2 -2
- {factpulse-1.0.6.dist-info → factpulse-2.0.2.dist-info}/RECORD +29 -32
- factpulse/api/processing_endpoints_unifis_api.py +0 -592
- factpulse/api/signature_lectronique_api.py +0 -1358
- factpulse/models/montanthttotal.py +0 -139
- {factpulse-1.0.6.dist-info → factpulse-2.0.2.dist-info}/WHEEL +0 -0
- {factpulse-1.0.6.dist-info → factpulse-2.0.2.dist-info}/licenses/LICENSE +0 -0
- {factpulse-1.0.6.dist-info → factpulse-2.0.2.dist-info}/top_level.txt +0 -0
factpulse/__init__.py
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "
|
|
17
|
+
__version__ = "2.0.2"
|
|
18
18
|
|
|
19
19
|
# Define package exports
|
|
20
20
|
__all__ = [
|
|
@@ -22,9 +22,7 @@ __all__ = [
|
|
|
22
22
|
"AFNORPDPPADirectoryServiceApi",
|
|
23
23
|
"AFNORPDPPAFlowServiceApi",
|
|
24
24
|
"ChorusProApi",
|
|
25
|
-
"ProcessingEndpointsUnifisApi",
|
|
26
25
|
"SantApi",
|
|
27
|
-
"SignatureLectroniqueApi",
|
|
28
26
|
"TraitementFactureApi",
|
|
29
27
|
"UtilisateurApi",
|
|
30
28
|
"ApiResponse",
|
|
@@ -79,24 +77,23 @@ __all__ = [
|
|
|
79
77
|
"InformationSignatureAPI",
|
|
80
78
|
"LigneDePoste",
|
|
81
79
|
"LigneDePosteMontantRemiseHt",
|
|
82
|
-
"LigneDePosteMontantTotalLigneHt",
|
|
83
80
|
"LigneDePosteTauxTvaManuel",
|
|
84
81
|
"LigneDeTVA",
|
|
85
82
|
"ModeDepot",
|
|
86
83
|
"ModePaiement",
|
|
84
|
+
"MontantAPayer",
|
|
85
|
+
"MontantBaseHt",
|
|
87
86
|
"MontantHtTotal",
|
|
87
|
+
"MontantHtTotal1",
|
|
88
|
+
"MontantRemiseGlobaleTtc",
|
|
88
89
|
"MontantTotal",
|
|
89
90
|
"MontantTotalAcompte",
|
|
90
|
-
"
|
|
91
|
+
"MontantTotalLigneHt",
|
|
91
92
|
"MontantTtcTotal",
|
|
93
|
+
"MontantTtcTotal1",
|
|
92
94
|
"MontantTva",
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"Montanthttotal",
|
|
96
|
-
"Montantttctotal",
|
|
97
|
-
"Montanttva",
|
|
98
|
-
"Montanttva1",
|
|
99
|
-
"Montantunitaireht",
|
|
95
|
+
"MontantTva1",
|
|
96
|
+
"MontantUnitaireHt",
|
|
100
97
|
"ObtenirIdChorusProRequest",
|
|
101
98
|
"ObtenirIdChorusProResponse",
|
|
102
99
|
"OptionsProcessing",
|
|
@@ -151,9 +148,7 @@ from factpulse.api.afnorpdppa_api import AFNORPDPPAApi as AFNORPDPPAApi
|
|
|
151
148
|
from factpulse.api.afnorpdppa_directory_service_api import AFNORPDPPADirectoryServiceApi as AFNORPDPPADirectoryServiceApi
|
|
152
149
|
from factpulse.api.afnorpdppa_flow_service_api import AFNORPDPPAFlowServiceApi as AFNORPDPPAFlowServiceApi
|
|
153
150
|
from factpulse.api.chorus_pro_api import ChorusProApi as ChorusProApi
|
|
154
|
-
from factpulse.api.processing_endpoints_unifis_api import ProcessingEndpointsUnifisApi as ProcessingEndpointsUnifisApi
|
|
155
151
|
from factpulse.api.sant_api import SantApi as SantApi
|
|
156
|
-
from factpulse.api.signature_lectronique_api import SignatureLectroniqueApi as SignatureLectroniqueApi
|
|
157
152
|
from factpulse.api.traitement_facture_api import TraitementFactureApi as TraitementFactureApi
|
|
158
153
|
from factpulse.api.utilisateur_api import UtilisateurApi as UtilisateurApi
|
|
159
154
|
|
|
@@ -212,24 +207,23 @@ from factpulse.models.http_validation_error import HTTPValidationError as HTTPVa
|
|
|
212
207
|
from factpulse.models.information_signature_api import InformationSignatureAPI as InformationSignatureAPI
|
|
213
208
|
from factpulse.models.ligne_de_poste import LigneDePoste as LigneDePoste
|
|
214
209
|
from factpulse.models.ligne_de_poste_montant_remise_ht import LigneDePosteMontantRemiseHt as LigneDePosteMontantRemiseHt
|
|
215
|
-
from factpulse.models.ligne_de_poste_montant_total_ligne_ht import LigneDePosteMontantTotalLigneHt as LigneDePosteMontantTotalLigneHt
|
|
216
210
|
from factpulse.models.ligne_de_poste_taux_tva_manuel import LigneDePosteTauxTvaManuel as LigneDePosteTauxTvaManuel
|
|
217
211
|
from factpulse.models.ligne_de_tva import LigneDeTVA as LigneDeTVA
|
|
218
212
|
from factpulse.models.mode_depot import ModeDepot as ModeDepot
|
|
219
213
|
from factpulse.models.mode_paiement import ModePaiement as ModePaiement
|
|
214
|
+
from factpulse.models.montant_a_payer import MontantAPayer as MontantAPayer
|
|
215
|
+
from factpulse.models.montant_base_ht import MontantBaseHt as MontantBaseHt
|
|
220
216
|
from factpulse.models.montant_ht_total import MontantHtTotal as MontantHtTotal
|
|
217
|
+
from factpulse.models.montant_ht_total1 import MontantHtTotal1 as MontantHtTotal1
|
|
218
|
+
from factpulse.models.montant_remise_globale_ttc import MontantRemiseGlobaleTtc as MontantRemiseGlobaleTtc
|
|
221
219
|
from factpulse.models.montant_total import MontantTotal as MontantTotal
|
|
222
220
|
from factpulse.models.montant_total_acompte import MontantTotalAcompte as MontantTotalAcompte
|
|
223
|
-
from factpulse.models.
|
|
221
|
+
from factpulse.models.montant_total_ligne_ht import MontantTotalLigneHt as MontantTotalLigneHt
|
|
224
222
|
from factpulse.models.montant_ttc_total import MontantTtcTotal as MontantTtcTotal
|
|
223
|
+
from factpulse.models.montant_ttc_total1 import MontantTtcTotal1 as MontantTtcTotal1
|
|
225
224
|
from factpulse.models.montant_tva import MontantTva as MontantTva
|
|
226
|
-
from factpulse.models.
|
|
227
|
-
from factpulse.models.
|
|
228
|
-
from factpulse.models.montanthttotal import Montanthttotal as Montanthttotal
|
|
229
|
-
from factpulse.models.montantttctotal import Montantttctotal as Montantttctotal
|
|
230
|
-
from factpulse.models.montanttva import Montanttva as Montanttva
|
|
231
|
-
from factpulse.models.montanttva1 import Montanttva1 as Montanttva1
|
|
232
|
-
from factpulse.models.montantunitaireht import Montantunitaireht as Montantunitaireht
|
|
225
|
+
from factpulse.models.montant_tva1 import MontantTva1 as MontantTva1
|
|
226
|
+
from factpulse.models.montant_unitaire_ht import MontantUnitaireHt as MontantUnitaireHt
|
|
233
227
|
from factpulse.models.obtenir_id_chorus_pro_request import ObtenirIdChorusProRequest as ObtenirIdChorusProRequest
|
|
234
228
|
from factpulse.models.obtenir_id_chorus_pro_response import ObtenirIdChorusProResponse as ObtenirIdChorusProResponse
|
|
235
229
|
from factpulse.models.options_processing import OptionsProcessing as OptionsProcessing
|
factpulse/api/__init__.py
CHANGED
|
@@ -5,9 +5,7 @@ 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.processing_endpoints_unifis_api import ProcessingEndpointsUnifisApi
|
|
9
8
|
from factpulse.api.sant_api import SantApi
|
|
10
|
-
from factpulse.api.signature_lectronique_api import SignatureLectroniqueApi
|
|
11
9
|
from factpulse.api.traitement_facture_api import TraitementFactureApi
|
|
12
10
|
from factpulse.api.utilisateur_api import UtilisateurApi
|
|
13
11
|
|