Skip to content

Commit 4614b63

Browse files
committed
initial commit 🐣
0 parents  commit 4614b63

352 files changed

Lines changed: 40782 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/python.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# NOTE: This file is auto generated by OpenAPI Generator.
2+
# URL: https://openapi-generator.tech
3+
#
4+
# ref: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
5+
6+
name: openapi_client Python package
7+
8+
on: [push, pull_request]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install -r requirements.txt
28+
pip install -r test-requirements.txt
29+
- name: Test with pytest
30+
run: |
31+
pytest --cov={{packageName}}

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
27+
# PyInstaller
28+
# Usually these files are written by a python script from a template
29+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
30+
*.manifest
31+
*.spec
32+
33+
# Installer logs
34+
pip-log.txt
35+
pip-delete-this-directory.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.coverage
41+
.coverage.*
42+
.cache
43+
nosetests.xml
44+
coverage.xml
45+
*,cover
46+
.hypothesis/
47+
venv/
48+
.venv/
49+
.python-version
50+
.pytest_cache
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
59+
# Sphinx documentation
60+
docs/_build/
61+
62+
# PyBuilder
63+
target/
64+
65+
#Ipython Notebook
66+
.ipynb_checkpoints

.gitlab-ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# NOTE: This file is auto generated by OpenAPI Generator.
2+
# URL: https://openapi-generator.tech
3+
#
4+
# ref: https://docs.gitlab.com/ee/ci/README.html
5+
# ref: https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Python.gitlab-ci.yml
6+
7+
stages:
8+
- test
9+
10+
.pytest:
11+
stage: test
12+
script:
13+
- pip install -r requirements.txt
14+
- pip install -r test-requirements.txt
15+
- pytest --cov=openapi_client
16+
17+
pytest-3.8:
18+
extends: .pytest
19+
image: python:3.8-alpine
20+
pytest-3.9:
21+
extends: .pytest
22+
image: python:3.9-alpine
23+
pytest-3.10:
24+
extends: .pytest
25+
image: python:3.10-alpine
26+
pytest-3.11:
27+
extends: .pytest
28+
image: python:3.11-alpine
29+
pytest-3.12:
30+
extends: .pytest
31+
image: python:3.12-alpine

.openapi-generator-ignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

.openapi-generator/FILES

Lines changed: 240 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,240 @@
1+
.github/workflows/python.yml
2+
.gitignore
3+
.gitlab-ci.yml
4+
.travis.yml
5+
README.md
6+
docs/AnnuaireApi.md
7+
docs/CheckoutApi.md
8+
docs/CommandesApi.md
9+
docs/FormulairesApi.md
10+
docs/HelloAssoApiV5ModelsAccountCompanyLegalStatusModel.md
11+
docs/HelloAssoApiV5ModelsAccountOrganismCategoryModel.md
12+
docs/HelloAssoApiV5ModelsAccountsClientsApiClientModel.md
13+
docs/HelloAssoApiV5ModelsAccountsClientsPublicPutApiClientRequest.md
14+
docs/HelloAssoApiV5ModelsApiNotificationsApiNotificationType.md
15+
docs/HelloAssoApiV5ModelsApiNotificationsApiUrlNotificationModel.md
16+
docs/HelloAssoApiV5ModelsApiNotificationsPostApiUrlNotificationBody.md
17+
docs/HelloAssoApiV5ModelsCartsCheckoutIntentResponse.md
18+
docs/HelloAssoApiV5ModelsCartsCheckoutPayer.md
19+
docs/HelloAssoApiV5ModelsCartsCheckoutTerm.md
20+
docs/HelloAssoApiV5ModelsCartsInitCheckoutBody.md
21+
docs/HelloAssoApiV5ModelsCartsInitCheckoutResponse.md
22+
docs/HelloAssoApiV5ModelsCommonContactModel.md
23+
docs/HelloAssoApiV5ModelsCommonDocumentModel.md
24+
docs/HelloAssoApiV5ModelsCommonMetaModel.md
25+
docs/HelloAssoApiV5ModelsCommonPaginationModel.md
26+
docs/HelloAssoApiV5ModelsCommonPlaceModel.md
27+
docs/HelloAssoApiV5ModelsDirectoryDirectoryOrganizationPublicModel.md
28+
docs/HelloAssoApiV5ModelsDirectoryListFormsRequest.md
29+
docs/HelloAssoApiV5ModelsDirectoryListOrganizationsRequest.md
30+
docs/HelloAssoApiV5ModelsDirectoryPartnerOrganizationModel.md
31+
docs/HelloAssoApiV5ModelsDirectorySynchronizableFormModel.md
32+
docs/HelloAssoApiV5ModelsDirectorySynchronizableOrganizationModel.md
33+
docs/HelloAssoApiV5ModelsEnumsFieldType.md
34+
docs/HelloAssoApiV5ModelsEnumsFormState.md
35+
docs/HelloAssoApiV5ModelsEnumsFormType.md
36+
docs/HelloAssoApiV5ModelsEnumsItemState.md
37+
docs/HelloAssoApiV5ModelsEnumsMembershipValidityType.md
38+
docs/HelloAssoApiV5ModelsEnumsOperationState.md
39+
docs/HelloAssoApiV5ModelsEnumsOrganizationType.md
40+
docs/HelloAssoApiV5ModelsEnumsPaymentCashOutState.md
41+
docs/HelloAssoApiV5ModelsEnumsPaymentFrequencyType.md
42+
docs/HelloAssoApiV5ModelsEnumsPaymentMeans.md
43+
docs/HelloAssoApiV5ModelsEnumsPaymentProviderType.md
44+
docs/HelloAssoApiV5ModelsEnumsPaymentState.md
45+
docs/HelloAssoApiV5ModelsEnumsPaymentType.md
46+
docs/HelloAssoApiV5ModelsEnumsPriceCategory.md
47+
docs/HelloAssoApiV5ModelsEnumsRecordActionType.md
48+
docs/HelloAssoApiV5ModelsEnumsSortField.md
49+
docs/HelloAssoApiV5ModelsEnumsSortOrder.md
50+
docs/HelloAssoApiV5ModelsEnumsTagType.md
51+
docs/HelloAssoApiV5ModelsEnumsTierType.md
52+
docs/HelloAssoApiV5ModelsFormsFormBasicModel.md
53+
docs/HelloAssoApiV5ModelsFormsFormLightModel.md
54+
docs/HelloAssoApiV5ModelsFormsFormPublicModel.md
55+
docs/HelloAssoApiV5ModelsFormsFormQuickCreateModel.md
56+
docs/HelloAssoApiV5ModelsFormsFormQuickCreateRequest.md
57+
docs/HelloAssoApiV5ModelsFormsTermModel.md
58+
docs/HelloAssoApiV5ModelsFormsTierLightModel.md
59+
docs/HelloAssoApiV5ModelsFormsTierPublicModel.md
60+
docs/HelloAssoApiV5ModelsOrganizationLegalInformationsOrganizationLegalStructuresModel.md
61+
docs/HelloAssoApiV5ModelsOrganizationLegalInformationsUpdateOrganizationLegalInformationConfigurationBody.md
62+
docs/HelloAssoApiV5ModelsOrganizationOrganizationBasicModel.md
63+
docs/HelloAssoApiV5ModelsOrganizationOrganizationLightModel.md
64+
docs/HelloAssoApiV5ModelsOrganizationOrganizationModel.md
65+
docs/HelloAssoApiV5ModelsPartnerStatisticsModel.md
66+
docs/HelloAssoApiV5ModelsPartnersPartnerPublicModel.md
67+
docs/HelloAssoApiV5ModelsPaymentPublicPaymentModel.md
68+
docs/HelloAssoApiV5ModelsPaymentRefundOperationModel.md
69+
docs/HelloAssoApiV5ModelsStatisticsItem.md
70+
docs/HelloAssoApiV5ModelsStatisticsItemCustomField.md
71+
docs/HelloAssoApiV5ModelsStatisticsItemDetail.md
72+
docs/HelloAssoApiV5ModelsStatisticsItemDiscount.md
73+
docs/HelloAssoApiV5ModelsStatisticsItemOption.md
74+
docs/HelloAssoApiV5ModelsStatisticsItemPayment.md
75+
docs/HelloAssoApiV5ModelsStatisticsOrder.md
76+
docs/HelloAssoApiV5ModelsStatisticsOrderAmountModel.md
77+
docs/HelloAssoApiV5ModelsStatisticsOrderDetail.md
78+
docs/HelloAssoApiV5ModelsStatisticsOrderItem.md
79+
docs/HelloAssoApiV5ModelsStatisticsOrderLight.md
80+
docs/HelloAssoApiV5ModelsStatisticsOrderPayment.md
81+
docs/HelloAssoApiV5ModelsStatisticsPayer.md
82+
docs/HelloAssoApiV5ModelsStatisticsPayment.md
83+
docs/HelloAssoApiV5ModelsStatisticsPaymentDetail.md
84+
docs/HelloAssoApiV5ModelsStatisticsPaymentItem.md
85+
docs/HelloAssoApiV5ModelsStatisticsRefundOperationLightModel.md
86+
docs/HelloAssoApiV5ModelsStatisticsShareItem.md
87+
docs/HelloAssoApiV5ModelsStatisticsSharePayment.md
88+
docs/HelloAssoApiV5ModelsStatisticsUser.md
89+
docs/HelloAssoApiV5ModelsTagsInternalTagModel.md
90+
docs/HelloAssoApiV5ModelsTagsPublicTagModel.md
91+
docs/HelloAssoModelsAccountsOrganizationLegalInformationsFiscalReceiptFormatOptionModel.md
92+
docs/HelloAssoModelsAccountsOrganizationLegalInformationsFiscalReceiptSignatoryModel.md
93+
docs/HelloAssoModelsAccountsOrganizationLegalInformationsOrganizationFiscalReceiptOptionsConfiguration.md
94+
docs/HelloAssoModelsAccountsOrganizationLegalInformationsOrganizationLegalInformationConfiguration.md
95+
docs/HelloAssoModelsAccountsOrganizationLegalInformationsTaxInformationText.md
96+
docs/HelloAssoModelsComplianceV2CommonAddressAddressModelSnapshot.md
97+
docs/HelloAssoModelsEnumsGlobalRole.md
98+
docs/HelloAssoModelsSharedGeoLocation.md
99+
docs/ListeDeValeursApi.md
100+
docs/OrganisationApi.md
101+
docs/OrganizationLegalInformationsApi.md
102+
docs/PaiementsApi.md
103+
docs/PartenairesApi.md
104+
docs/ResultsWithPaginationModelFormLightModel.md
105+
docs/ResultsWithPaginationModelItem.md
106+
docs/ResultsWithPaginationModelOrder.md
107+
docs/ResultsWithPaginationModelPartnerOrganizationModel.md
108+
docs/ResultsWithPaginationModelPayment.md
109+
docs/ResultsWithPaginationModelPublicPaymentModel.md
110+
docs/ResultsWithPaginationModelSynchronizableFormModel.md
111+
docs/ResultsWithPaginationModelSynchronizableOrganizationModel.md
112+
docs/TagsApi.md
113+
docs/TaxReceiptApi.md
114+
docs/UtilisateursApi.md
115+
git_push.sh
116+
openapi_client/__init__.py
117+
openapi_client/api/__init__.py
118+
openapi_client/api/annuaire_api.py
119+
openapi_client/api/checkout_api.py
120+
openapi_client/api/commandes_api.py
121+
openapi_client/api/formulaires_api.py
122+
openapi_client/api/liste_de_valeurs_api.py
123+
openapi_client/api/organisation_api.py
124+
openapi_client/api/organization_legal_informations_api.py
125+
openapi_client/api/paiements_api.py
126+
openapi_client/api/partenaires_api.py
127+
openapi_client/api/tags_api.py
128+
openapi_client/api/tax_receipt_api.py
129+
openapi_client/api/utilisateurs_api.py
130+
openapi_client/api_client.py
131+
openapi_client/api_response.py
132+
openapi_client/configuration.py
133+
openapi_client/exceptions.py
134+
openapi_client/models/__init__.py
135+
openapi_client/models/hello_asso_api_v5_models_account_company_legal_status_model.py
136+
openapi_client/models/hello_asso_api_v5_models_account_organism_category_model.py
137+
openapi_client/models/hello_asso_api_v5_models_accounts_clients_api_client_model.py
138+
openapi_client/models/hello_asso_api_v5_models_accounts_clients_public_put_api_client_request.py
139+
openapi_client/models/hello_asso_api_v5_models_api_notifications_api_notification_type.py
140+
openapi_client/models/hello_asso_api_v5_models_api_notifications_api_url_notification_model.py
141+
openapi_client/models/hello_asso_api_v5_models_api_notifications_post_api_url_notification_body.py
142+
openapi_client/models/hello_asso_api_v5_models_carts_checkout_intent_response.py
143+
openapi_client/models/hello_asso_api_v5_models_carts_checkout_payer.py
144+
openapi_client/models/hello_asso_api_v5_models_carts_checkout_term.py
145+
openapi_client/models/hello_asso_api_v5_models_carts_init_checkout_body.py
146+
openapi_client/models/hello_asso_api_v5_models_carts_init_checkout_response.py
147+
openapi_client/models/hello_asso_api_v5_models_common_contact_model.py
148+
openapi_client/models/hello_asso_api_v5_models_common_document_model.py
149+
openapi_client/models/hello_asso_api_v5_models_common_meta_model.py
150+
openapi_client/models/hello_asso_api_v5_models_common_pagination_model.py
151+
openapi_client/models/hello_asso_api_v5_models_common_place_model.py
152+
openapi_client/models/hello_asso_api_v5_models_directory_directory_organization_public_model.py
153+
openapi_client/models/hello_asso_api_v5_models_directory_list_forms_request.py
154+
openapi_client/models/hello_asso_api_v5_models_directory_list_organizations_request.py
155+
openapi_client/models/hello_asso_api_v5_models_directory_partner_organization_model.py
156+
openapi_client/models/hello_asso_api_v5_models_directory_synchronizable_form_model.py
157+
openapi_client/models/hello_asso_api_v5_models_directory_synchronizable_organization_model.py
158+
openapi_client/models/hello_asso_api_v5_models_enums_field_type.py
159+
openapi_client/models/hello_asso_api_v5_models_enums_form_state.py
160+
openapi_client/models/hello_asso_api_v5_models_enums_form_type.py
161+
openapi_client/models/hello_asso_api_v5_models_enums_item_state.py
162+
openapi_client/models/hello_asso_api_v5_models_enums_membership_validity_type.py
163+
openapi_client/models/hello_asso_api_v5_models_enums_operation_state.py
164+
openapi_client/models/hello_asso_api_v5_models_enums_organization_type.py
165+
openapi_client/models/hello_asso_api_v5_models_enums_payment_cash_out_state.py
166+
openapi_client/models/hello_asso_api_v5_models_enums_payment_frequency_type.py
167+
openapi_client/models/hello_asso_api_v5_models_enums_payment_means.py
168+
openapi_client/models/hello_asso_api_v5_models_enums_payment_provider_type.py
169+
openapi_client/models/hello_asso_api_v5_models_enums_payment_state.py
170+
openapi_client/models/hello_asso_api_v5_models_enums_payment_type.py
171+
openapi_client/models/hello_asso_api_v5_models_enums_price_category.py
172+
openapi_client/models/hello_asso_api_v5_models_enums_record_action_type.py
173+
openapi_client/models/hello_asso_api_v5_models_enums_sort_field.py
174+
openapi_client/models/hello_asso_api_v5_models_enums_sort_order.py
175+
openapi_client/models/hello_asso_api_v5_models_enums_tag_type.py
176+
openapi_client/models/hello_asso_api_v5_models_enums_tier_type.py
177+
openapi_client/models/hello_asso_api_v5_models_forms_form_basic_model.py
178+
openapi_client/models/hello_asso_api_v5_models_forms_form_light_model.py
179+
openapi_client/models/hello_asso_api_v5_models_forms_form_public_model.py
180+
openapi_client/models/hello_asso_api_v5_models_forms_form_quick_create_model.py
181+
openapi_client/models/hello_asso_api_v5_models_forms_form_quick_create_request.py
182+
openapi_client/models/hello_asso_api_v5_models_forms_term_model.py
183+
openapi_client/models/hello_asso_api_v5_models_forms_tier_light_model.py
184+
openapi_client/models/hello_asso_api_v5_models_forms_tier_public_model.py
185+
openapi_client/models/hello_asso_api_v5_models_organization_legal_informations_organization_legal_structures_model.py
186+
openapi_client/models/hello_asso_api_v5_models_organization_legal_informations_update_organization_legal_information_configuration_body.py
187+
openapi_client/models/hello_asso_api_v5_models_organization_organization_basic_model.py
188+
openapi_client/models/hello_asso_api_v5_models_organization_organization_light_model.py
189+
openapi_client/models/hello_asso_api_v5_models_organization_organization_model.py
190+
openapi_client/models/hello_asso_api_v5_models_partner_statistics_model.py
191+
openapi_client/models/hello_asso_api_v5_models_partners_partner_public_model.py
192+
openapi_client/models/hello_asso_api_v5_models_payment_public_payment_model.py
193+
openapi_client/models/hello_asso_api_v5_models_payment_refund_operation_model.py
194+
openapi_client/models/hello_asso_api_v5_models_statistics_item.py
195+
openapi_client/models/hello_asso_api_v5_models_statistics_item_custom_field.py
196+
openapi_client/models/hello_asso_api_v5_models_statistics_item_detail.py
197+
openapi_client/models/hello_asso_api_v5_models_statistics_item_discount.py
198+
openapi_client/models/hello_asso_api_v5_models_statistics_item_option.py
199+
openapi_client/models/hello_asso_api_v5_models_statistics_item_payment.py
200+
openapi_client/models/hello_asso_api_v5_models_statistics_order.py
201+
openapi_client/models/hello_asso_api_v5_models_statistics_order_amount_model.py
202+
openapi_client/models/hello_asso_api_v5_models_statistics_order_detail.py
203+
openapi_client/models/hello_asso_api_v5_models_statistics_order_item.py
204+
openapi_client/models/hello_asso_api_v5_models_statistics_order_light.py
205+
openapi_client/models/hello_asso_api_v5_models_statistics_order_payment.py
206+
openapi_client/models/hello_asso_api_v5_models_statistics_payer.py
207+
openapi_client/models/hello_asso_api_v5_models_statistics_payment.py
208+
openapi_client/models/hello_asso_api_v5_models_statistics_payment_detail.py
209+
openapi_client/models/hello_asso_api_v5_models_statistics_payment_item.py
210+
openapi_client/models/hello_asso_api_v5_models_statistics_refund_operation_light_model.py
211+
openapi_client/models/hello_asso_api_v5_models_statistics_share_item.py
212+
openapi_client/models/hello_asso_api_v5_models_statistics_share_payment.py
213+
openapi_client/models/hello_asso_api_v5_models_statistics_user.py
214+
openapi_client/models/hello_asso_api_v5_models_tags_internal_tag_model.py
215+
openapi_client/models/hello_asso_api_v5_models_tags_public_tag_model.py
216+
openapi_client/models/hello_asso_models_accounts_organization_legal_informations_fiscal_receipt_format_option_model.py
217+
openapi_client/models/hello_asso_models_accounts_organization_legal_informations_fiscal_receipt_signatory_model.py
218+
openapi_client/models/hello_asso_models_accounts_organization_legal_informations_organization_fiscal_receipt_options_configuration.py
219+
openapi_client/models/hello_asso_models_accounts_organization_legal_informations_organization_legal_information_configuration.py
220+
openapi_client/models/hello_asso_models_accounts_organization_legal_informations_tax_information_text.py
221+
openapi_client/models/hello_asso_models_compliance_v2_common_address_address_model_snapshot.py
222+
openapi_client/models/hello_asso_models_enums_global_role.py
223+
openapi_client/models/hello_asso_models_shared_geo_location.py
224+
openapi_client/models/results_with_pagination_model_form_light_model.py
225+
openapi_client/models/results_with_pagination_model_item.py
226+
openapi_client/models/results_with_pagination_model_order.py
227+
openapi_client/models/results_with_pagination_model_partner_organization_model.py
228+
openapi_client/models/results_with_pagination_model_payment.py
229+
openapi_client/models/results_with_pagination_model_public_payment_model.py
230+
openapi_client/models/results_with_pagination_model_synchronizable_form_model.py
231+
openapi_client/models/results_with_pagination_model_synchronizable_organization_model.py
232+
openapi_client/py.typed
233+
openapi_client/rest.py
234+
pyproject.toml
235+
requirements.txt
236+
setup.cfg
237+
setup.py
238+
test-requirements.txt
239+
test/__init__.py
240+
tox.ini

.openapi-generator/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7.10.0

0 commit comments

Comments
 (0)