shopware-api-client 1.2.1__tar.gz → 2.0.0__tar.gz
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.
- shopware_api_client-2.0.0/.coveragerc.toml +15 -0
- shopware_api_client-2.0.0/.devcontainer/Dockerfile +4 -0
- shopware_api_client-2.0.0/.devcontainer/devcontainer-lock.json +9 -0
- shopware_api_client-2.0.0/.devcontainer/devcontainer.json +45 -0
- shopware_api_client-2.0.0/.devcontainer/docker-compose.yml +15 -0
- shopware_api_client-2.0.0/.devcontainer/requirements.txt +1 -0
- shopware_api_client-2.0.0/.devcontainer/scripts/initialize.sh +3 -0
- shopware_api_client-2.0.0/.devcontainer/scripts/post-create.sh +12 -0
- shopware_api_client-2.0.0/.devcontainer/scripts/post-start.sh +1 -0
- shopware_api_client-2.0.0/.github/dependabot.yml +37 -0
- shopware_api_client-2.0.0/.github/workflows/continuous_delivery.yml +34 -0
- shopware_api_client-2.0.0/.github/workflows/continuous_integration.yml +47 -0
- shopware_api_client-2.0.0/.gitignore +162 -0
- shopware_api_client-2.0.0/.pre-commit-config.yaml +31 -0
- shopware_api_client-2.0.0/.python-version +1 -0
- shopware_api_client-2.0.0/.ruff.toml +76 -0
- shopware_api_client-2.0.0/.vscode/settings.json +14 -0
- shopware_api_client-2.0.0/.vscode/tasks.json +17 -0
- shopware_api_client-1.2.1/README.md → shopware_api_client-2.0.0/PKG-INFO +449 -393
- shopware_api_client-1.2.1/PKG-INFO → shopware_api_client-2.0.0/README.md +427 -423
- shopware_api_client-2.0.0/poetry.lock +1213 -0
- shopware_api_client-2.0.0/pyproject.toml +51 -0
- shopware_api_client-2.0.0/pytest.ini +8 -0
- shopware_api_client-2.0.0/src/shopware_api_client/auth.py +79 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/base.py +156 -161
- shopware_api_client-2.0.0/src/shopware_api_client/cache.py +82 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/client.py +23 -32
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/__init__.py +5 -5
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/api_info.py +1 -1
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/app.py +1 -1
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/relations.py +1 -1
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/exceptions.py +2 -2
- shopware_api_client-2.0.0/src/shopware_api_client/py.typed +0 -0
- shopware_api_client-2.0.0/src/shopware_api_client/structs/__init__.py +0 -0
- shopware_api_client-2.0.0/tests/__init__.py +0 -0
- shopware_api_client-2.0.0/tests/test_auth.py +172 -0
- shopware_api_client-2.0.0/tests/test_base_fields.py +50 -0
- shopware_api_client-2.0.0/tests/test_client.py +312 -0
- shopware_api_client-2.0.0/tests/test_config.py +59 -0
- shopware_api_client-2.0.0/tests/test_endpoint_search_mixin.py +80 -0
- shopware_api_client-2.0.0/tests/test_exceptions.py +126 -0
- shopware_api_client-2.0.0/tests/test_thumbnail.py +27 -0
- shopware_api_client-2.0.0/ty.toml +2 -0
- shopware_api_client-2.0.0/uv.lock +2019 -0
- shopware_api_client-1.2.1/src/shopware_api_client/cache.py +0 -157
- /shopware_api_client-1.2.1/src/shopware_api_client/__init__.py → /shopware_api_client-2.0.0/.devcontainer/.env +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/LICENSE +0 -0
- /shopware_api_client-1.2.1/src/shopware_api_client/endpoints/__init__.py → /shopware_api_client-2.0.0/docs/README.md +0 -0
- /shopware_api_client-1.2.1/pyproject.toml → /shopware_api_client-2.0.0/pyproject copy.toml +0 -0
- {shopware_api_client-1.2.1/src/shopware_api_client/endpoints/admin/commercial → shopware_api_client-2.0.0/src/shopware_api_client}/__init__.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/config.py +0 -0
- {shopware_api_client-1.2.1/src/shopware_api_client/endpoints/admin/core → shopware_api_client-2.0.0/src/shopware_api_client/endpoints}/__init__.py +0 -0
- {shopware_api_client-1.2.1/src/shopware_api_client/endpoints/store/core → shopware_api_client-2.0.0/src/shopware_api_client/endpoints/admin/commercial}/__init__.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/commercial/b2b_components_role.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/commercial/b2b_components_shopping_list.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/commercial/b2b_components_shopping_list_line_item.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/commercial/b2b_employee.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/commercial/dynamic_access.py +0 -0
- {shopware_api_client-1.2.1/src/shopware_api_client/models → shopware_api_client-2.0.0/src/shopware_api_client/endpoints/admin/core}/__init__.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/acl_role.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/app_script_condition.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/category.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/cms_block.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/cms_page.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/cms_section.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/cms_slot.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/country.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/country_state.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/currency.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/currency_country_rounding.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/custom_entity.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/custom_field.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/customer.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/customer_address.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/customer_group.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/customer_recovery.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/customer_wishlist.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/customer_wishlist_product.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/delivery_time.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/document.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/document_base_config.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/document_base_config_sales_channel.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/document_type.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/integration.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/landing_page.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/language.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/locale.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/main_category.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/media.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/media_default_folder.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/media_folder.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/media_folder_configuration.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/media_thumbnail.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/media_thumbnail_size.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order_address.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order_customer.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order_delivery.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order_delivery_position.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order_line_item.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order_line_item_download.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order_transaction.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order_transaction_capture.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order_transaction_capture_refund.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/order_transaction_capture_refund_position.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/payment_method.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_configurator_setting.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_cross_selling.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_cross_selling_assigned_products.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_download.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_export.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_feature_set.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_manufacturer.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_media.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_review.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_search_keyword.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_stream.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_visibility.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/product_warehouse.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/promotion.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/promotion_discount.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/promotion_discount_prices.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/property_group.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/property_group_option.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/rule.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/rule_condition.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/sales_channel.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/sales_channel_domain.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/salutation.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/seo_url.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/shipping_method.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/shipping_method_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/state_machine.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/state_machine_history.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/state_machine_state.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/state_machine_transition.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/system_config.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/tag.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/tax.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/tax_rule.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/tax_rule_type.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/unit.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/user.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/warehouse.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/warehouse_group.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/admin/core/warehouse_group_warehouse.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/base_fields.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/__init__.py +0 -0
- {shopware_api_client-1.2.1/src/shopware_api_client/structs → shopware_api_client-2.0.0/src/shopware_api_client/endpoints/store/core}/__init__.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/address.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/cart.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/category.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/cms_block.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/cms_page.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/cms_section.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/cms_slot.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/context.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/country.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/country_state.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/currency.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/customer.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/customer_group.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/delivery_time.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/document.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/document_type.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/landing_page.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/language.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/locale.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/main_category.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/media.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/media_thumbnail.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/order.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/order_address.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/order_customer.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/order_delivery.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/order_delivery_position.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/order_line_item.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/order_transaction.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/order_transaction_capture.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/order_transaction_capture_refund.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/order_transaction_capture_refund_position.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/payment_method.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/product.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/product_configurator_setting.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/product_cross_selling.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/product_download.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/product_manufacturer.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/product_media.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/product_review.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/product_stream.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/property_group.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/property_group_option.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/rule.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/sales_channel.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/sales_channel_domain.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/salutation.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/seo_url.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/shipping_method.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/shipping_method_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/state_machine_state.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/tag.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/tax.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/endpoints/store/core/unit.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/fieldsets.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/logging.py +0 -0
- /shopware_api_client-1.2.1/src/shopware_api_client/py.typed → /shopware_api_client-2.0.0/src/shopware_api_client/models/__init__.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/acl_role.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/app.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/app_script_condition.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/b2b_components_role.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/b2b_components_shopping_list.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/b2b_components_shopping_list_line_item.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/b2b_employee.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/category.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/cms_block.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/cms_page.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/cms_section.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/cms_slot.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/country.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/country_state.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/currency.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/currency_country_rounding.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/custom_entity.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/custom_field.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/customer.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/customer_address.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/customer_group.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/customer_recovery.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/customer_wishlist.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/customer_wishlist_product.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/delivery_time.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/document.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/document_base_config.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/document_base_config_sales_channel.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/document_type.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/dynamic_access.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/integration.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/landing_page.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/language.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/locale.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/main_category.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/media.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/media_default_folder.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/media_folder.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/media_folder_configuration.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/media_thumbnail.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/media_thumbnail_size.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order_address.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order_customer.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order_delivery.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order_delivery_position.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order_line_item.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order_line_item_download.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order_transaction.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order_transaction_capture.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order_transaction_capture_refund.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/order_transaction_capture_refund_position.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/payment_method.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_configurator_setting.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_cross_selling.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_cross_selling_assigned_products.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_download.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_export.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_feature_set.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_manufacturer.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_media.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_review.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_search_keyword.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_stream.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_visibility.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/product_warehouse.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/promotion.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/promotion_discount.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/promotion_discount_prices.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/property_group.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/property_group_option.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/rule.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/rule_condition.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/sales_channel.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/sales_channel_domain.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/salutation.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/seo_url.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/shipping_method.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/shipping_method_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/state_machine.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/state_machine_history.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/state_machine_state.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/state_machine_transition.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/system_config.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/tag.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/tax.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/tax_rule.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/tax_rule_type.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/unit.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/user.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/warehouse.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/warehouse_group.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/models/warehouse_group_warehouse.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/absolute_price_definition.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/calculated_cheapest_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/calculated_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/calculated_tax.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/cart.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/cart_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/cash_rounding_config.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/context.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/delivery.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/delivery_date.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/delivery_information.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/delivery_position.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/delivery_time.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/language_info.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/line_item.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/list_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/measurement_units.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/percentage_price_definition.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/quantity_information.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/quantity_price_definition.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/reference_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/reference_price_definition.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/regulation_price.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/sales_channel_context.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/shipping_location.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/tax_free_config.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/tax_rule.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/transaction.py +0 -0
- {shopware_api_client-1.2.1 → shopware_api_client-2.0.0}/src/shopware_api_client/structs/variant_listing_config.py +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"features": {
|
|
3
|
+
"ghcr.io/devcontainers/features/common-utils:2": {
|
|
4
|
+
"version": "2.5.9",
|
|
5
|
+
"resolved": "ghcr.io/devcontainers/features/common-utils@sha256:cb0c4d3c276f157eed17935747e364178d75fee17f55c4e129966f64633deb3a",
|
|
6
|
+
"integrity": "sha256:cb0c4d3c276f157eed17935747e364178d75fee17f55c4e129966f64633deb3a"
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Shopware API Client (Python library)",
|
|
3
|
+
"service": "library",
|
|
4
|
+
"remoteUser": "vscode",
|
|
5
|
+
"workspaceFolder": "/workspaces",
|
|
6
|
+
"dockerComposeFile": "docker-compose.yml",
|
|
7
|
+
"mounts": [
|
|
8
|
+
"type=bind,source=${localEnv:HOME}${localEnv:USERPROFILE}/.ssh,target=/home/vscode/.ssh,readonly"
|
|
9
|
+
],
|
|
10
|
+
"initializeCommand": "bash .devcontainer/scripts/initialize.sh",
|
|
11
|
+
"postCreateCommand": "bash .devcontainer/scripts/post-create.sh",
|
|
12
|
+
"postStartCommand": "bash .devcontainer/scripts/post-start.sh",
|
|
13
|
+
"init": true,
|
|
14
|
+
"features": {
|
|
15
|
+
"ghcr.io/devcontainers/features/common-utils:2": {
|
|
16
|
+
"installZsh": "true",
|
|
17
|
+
"username": "vscode",
|
|
18
|
+
"userUid": "1000",
|
|
19
|
+
"userGid": "1000",
|
|
20
|
+
"upgradePackages": "true"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"customizations": {
|
|
24
|
+
"vscode": {
|
|
25
|
+
"extensions": [
|
|
26
|
+
"ms-python.python",
|
|
27
|
+
"ms-python.debugpy",
|
|
28
|
+
"ms-toolsai.jupyter",
|
|
29
|
+
"ms-toolsai.datawrangler",
|
|
30
|
+
"ms-vsliveshare.vsliveshare",
|
|
31
|
+
"ms-vscode.vscode-speech",
|
|
32
|
+
"GitHub.copilot-chat",
|
|
33
|
+
"GitHub.vscode-pull-request-github",
|
|
34
|
+
"github.vscode-github-actions",
|
|
35
|
+
"GitHub.github-vscode-theme",
|
|
36
|
+
"charliermarsh.ruff",
|
|
37
|
+
"astral-sh.ty",
|
|
38
|
+
"tamasfe.even-better-toml",
|
|
39
|
+
"redhat.vscode-yaml",
|
|
40
|
+
"esbenp.prettier-vscode",
|
|
41
|
+
"eamodio.gitlens"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
services:
|
|
2
|
+
library:
|
|
3
|
+
container_name: shopware-api-client
|
|
4
|
+
init: true
|
|
5
|
+
build:
|
|
6
|
+
context: ..
|
|
7
|
+
dockerfile: .devcontainer/Dockerfile
|
|
8
|
+
env_file:
|
|
9
|
+
- .env
|
|
10
|
+
- path: local.env
|
|
11
|
+
required: false
|
|
12
|
+
volumes:
|
|
13
|
+
- ..:/workspaces:cached
|
|
14
|
+
# Overrides default command so things don't shut down after the process ends.
|
|
15
|
+
command: sleep infinity
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pre-commit==4.6.0
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# fix permissions
|
|
2
|
+
sudo chown -R vscode:vscode /home/vscode/
|
|
3
|
+
sudo chmod -R a+rw /workspaces/.data
|
|
4
|
+
|
|
5
|
+
# Add bash-completion's
|
|
6
|
+
echo "source /usr/share/bash-completion/completions/git" >> ~/.bashrc
|
|
7
|
+
|
|
8
|
+
# install deps
|
|
9
|
+
pip config set global.cache-dir /workspaces/.cache/pip
|
|
10
|
+
pip install -r /workspaces/.devcontainer/requirements.txt
|
|
11
|
+
|
|
12
|
+
pre-commit install
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
uv sync --all-groups
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
|
3
|
+
# Please see the documentation for all configuration options:
|
|
4
|
+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
5
|
+
|
|
6
|
+
version: 2
|
|
7
|
+
updates:
|
|
8
|
+
- package-ecosystem: "docker"
|
|
9
|
+
directory: "/"
|
|
10
|
+
schedule:
|
|
11
|
+
interval: "daily"
|
|
12
|
+
cooldown:
|
|
13
|
+
default-days: 7
|
|
14
|
+
- package-ecosystem: "devcontainers"
|
|
15
|
+
directory: "/"
|
|
16
|
+
schedule:
|
|
17
|
+
interval: "daily"
|
|
18
|
+
cooldown:
|
|
19
|
+
default-days: 7
|
|
20
|
+
- package-ecosystem: "github-actions"
|
|
21
|
+
directory: "/"
|
|
22
|
+
schedule:
|
|
23
|
+
interval: "daily"
|
|
24
|
+
cooldown:
|
|
25
|
+
default-days: 7
|
|
26
|
+
- package-ecosystem: "pip"
|
|
27
|
+
directory: "/"
|
|
28
|
+
schedule:
|
|
29
|
+
interval: "daily"
|
|
30
|
+
cooldown:
|
|
31
|
+
default-days: 7
|
|
32
|
+
- package-ecosystem: "uv"
|
|
33
|
+
directory: "/"
|
|
34
|
+
schedule:
|
|
35
|
+
interval: "daily"
|
|
36
|
+
cooldown:
|
|
37
|
+
default-days: 7
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# This workflow will install Python dependencies, run tests and lint with a single version of Python
|
|
2
|
+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
3
|
+
|
|
4
|
+
name: Continuous Delivery (Python)
|
|
5
|
+
on:
|
|
6
|
+
release:
|
|
7
|
+
types: [published]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
environment: release
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
permissions:
|
|
14
|
+
id-token: write
|
|
15
|
+
contents: read
|
|
16
|
+
strategy:
|
|
17
|
+
matrix:
|
|
18
|
+
python-version: ["3.12"] # Add more Python versions to test here
|
|
19
|
+
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
22
|
+
- name: Install uv
|
|
23
|
+
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
|
|
24
|
+
with:
|
|
25
|
+
python-version: ${{ matrix.python-version }}
|
|
26
|
+
|
|
27
|
+
- name: Install dependencies
|
|
28
|
+
run: uv sync --all-groups
|
|
29
|
+
|
|
30
|
+
- name: Build and publish Package
|
|
31
|
+
run: |
|
|
32
|
+
uv version ${{ github.ref_name }}
|
|
33
|
+
uv build
|
|
34
|
+
uv publish --trusted-publishing always
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# This workflow will install Python dependencies, run tests and lint with a single version of Python
|
|
2
|
+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
3
|
+
|
|
4
|
+
name: Continuous Integration (Python)
|
|
5
|
+
on:
|
|
6
|
+
push:
|
|
7
|
+
branches:
|
|
8
|
+
- main
|
|
9
|
+
|
|
10
|
+
pull_request:
|
|
11
|
+
types: [opened, synchronize, reopened]
|
|
12
|
+
branches:
|
|
13
|
+
- main
|
|
14
|
+
|
|
15
|
+
jobs:
|
|
16
|
+
build:
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
strategy:
|
|
19
|
+
matrix:
|
|
20
|
+
python-version: ["3.14"] # Add more Python versions to test here
|
|
21
|
+
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
24
|
+
- name: Install uv
|
|
25
|
+
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
|
|
26
|
+
with:
|
|
27
|
+
python-version: ${{ matrix.python-version }}
|
|
28
|
+
|
|
29
|
+
- name: Install dependencies
|
|
30
|
+
run: uv sync --all-groups
|
|
31
|
+
|
|
32
|
+
- name: Lint with ruff
|
|
33
|
+
run: uv run ruff check . --output-format=github
|
|
34
|
+
|
|
35
|
+
- name: Check types with ty
|
|
36
|
+
run: uv run ty check . --output-format=github
|
|
37
|
+
|
|
38
|
+
- name: Test with pytest
|
|
39
|
+
run: uv run pytest .
|
|
40
|
+
|
|
41
|
+
# - name: Upload coverage report
|
|
42
|
+
# if: always() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
|
|
43
|
+
# uses: actions/upload-code-coverage@abb5995db9e0199b0e2bb9dbd136fce4cb1ec4d3 # v1.3.0
|
|
44
|
+
# with:
|
|
45
|
+
# file: coverage.xml
|
|
46
|
+
# language: Python
|
|
47
|
+
# label: code-coverage/pytest
|
|
@@ -0,0 +1,162 @@
|
|
|
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
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py,cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# poetry
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
102
|
+
#poetry.lock
|
|
103
|
+
|
|
104
|
+
# pdm
|
|
105
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
106
|
+
#pdm.lock
|
|
107
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
108
|
+
# in version control.
|
|
109
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
110
|
+
.pdm.toml
|
|
111
|
+
|
|
112
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
113
|
+
__pypackages__/
|
|
114
|
+
|
|
115
|
+
# Celery stuff
|
|
116
|
+
celerybeat-schedule
|
|
117
|
+
celerybeat.pid
|
|
118
|
+
|
|
119
|
+
# SageMath parsed files
|
|
120
|
+
*.sage.py
|
|
121
|
+
|
|
122
|
+
# Environments
|
|
123
|
+
.venv
|
|
124
|
+
env/
|
|
125
|
+
venv/
|
|
126
|
+
ENV/
|
|
127
|
+
env.bak/
|
|
128
|
+
venv.bak/
|
|
129
|
+
|
|
130
|
+
# Spyder project settings
|
|
131
|
+
.spyderproject
|
|
132
|
+
.spyproject
|
|
133
|
+
|
|
134
|
+
# Rope project settings
|
|
135
|
+
.ropeproject
|
|
136
|
+
|
|
137
|
+
# mkdocs documentation
|
|
138
|
+
/site
|
|
139
|
+
|
|
140
|
+
# mypy
|
|
141
|
+
.mypy_cache/
|
|
142
|
+
.dmypy.json
|
|
143
|
+
dmypy.json
|
|
144
|
+
|
|
145
|
+
# Pyre type checker
|
|
146
|
+
.pyre/
|
|
147
|
+
|
|
148
|
+
# pytype static type analyzer
|
|
149
|
+
.pytype/
|
|
150
|
+
|
|
151
|
+
# Cython debug symbols
|
|
152
|
+
cython_debug/
|
|
153
|
+
|
|
154
|
+
# PyCharm
|
|
155
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
156
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
157
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
158
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
159
|
+
#.idea/
|
|
160
|
+
model_openapi3.py
|
|
161
|
+
openapi3.json
|
|
162
|
+
pytest.xml
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# https://pre-commit.com/
|
|
2
|
+
repos:
|
|
3
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
4
|
+
rev: v6.0.0
|
|
5
|
+
hooks:
|
|
6
|
+
- id: check-toml
|
|
7
|
+
- id: check-json
|
|
8
|
+
- id: check-yaml
|
|
9
|
+
- id: check-case-conflict
|
|
10
|
+
- id: fix-byte-order-marker
|
|
11
|
+
- id: trailing-whitespace
|
|
12
|
+
- id: end-of-file-fixer
|
|
13
|
+
- id: detect-private-key
|
|
14
|
+
- repo: https://github.com/gitleaks/gitleaks
|
|
15
|
+
rev: v8.24.2
|
|
16
|
+
hooks:
|
|
17
|
+
- id: gitleaks
|
|
18
|
+
- repo: local
|
|
19
|
+
hooks:
|
|
20
|
+
- id: ruff
|
|
21
|
+
name: ruff
|
|
22
|
+
files: ^service/
|
|
23
|
+
entry: sh -c "uv run ruff check --fix"
|
|
24
|
+
language: system
|
|
25
|
+
types: [python]
|
|
26
|
+
- id: ty
|
|
27
|
+
name: ty
|
|
28
|
+
files: ^service/
|
|
29
|
+
entry: sh -c "uv run ty check"
|
|
30
|
+
language: system
|
|
31
|
+
types: [python]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.14
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Exclude a variety of commonly ignored directories.
|
|
2
|
+
exclude = [
|
|
3
|
+
".bzr",
|
|
4
|
+
".direnv",
|
|
5
|
+
".eggs",
|
|
6
|
+
".git",
|
|
7
|
+
".git-rewrite",
|
|
8
|
+
".hg",
|
|
9
|
+
".ipynb_checkpoints",
|
|
10
|
+
".mypy_cache",
|
|
11
|
+
".nox",
|
|
12
|
+
".pants.d",
|
|
13
|
+
".pyenv",
|
|
14
|
+
".pytest_cache",
|
|
15
|
+
".pytype",
|
|
16
|
+
".ruff_cache",
|
|
17
|
+
".svn",
|
|
18
|
+
".tox",
|
|
19
|
+
".venv",
|
|
20
|
+
".vscode",
|
|
21
|
+
"__pypackages__",
|
|
22
|
+
"_build",
|
|
23
|
+
"buck-out",
|
|
24
|
+
"build",
|
|
25
|
+
"dist",
|
|
26
|
+
"node_modules",
|
|
27
|
+
"site-packages",
|
|
28
|
+
"venv",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
line-length = 120
|
|
32
|
+
indent-width = 4
|
|
33
|
+
|
|
34
|
+
# Assume Python 3.12
|
|
35
|
+
target-version = "py312"
|
|
36
|
+
|
|
37
|
+
[lint]
|
|
38
|
+
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
|
|
39
|
+
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
|
|
40
|
+
# McCabe complexity (`C901`) by default.
|
|
41
|
+
select = ["E4", "E7", "E9", "F"]
|
|
42
|
+
ignore = []
|
|
43
|
+
|
|
44
|
+
# Allow fix for all enabled rules (when `--fix`) is provided.
|
|
45
|
+
fixable = ["ALL"]
|
|
46
|
+
unfixable = []
|
|
47
|
+
|
|
48
|
+
# Allow unused variables when underscore-prefixed.
|
|
49
|
+
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
|
|
50
|
+
|
|
51
|
+
[format]
|
|
52
|
+
# Like Black, use double quotes for strings.
|
|
53
|
+
quote-style = "double"
|
|
54
|
+
|
|
55
|
+
# Like Black, indent with spaces, rather than tabs.
|
|
56
|
+
indent-style = "space"
|
|
57
|
+
|
|
58
|
+
# Like Black, respect magic trailing commas.
|
|
59
|
+
skip-magic-trailing-comma = false
|
|
60
|
+
|
|
61
|
+
# Like Black, automatically detect the appropriate line ending.
|
|
62
|
+
line-ending = "auto"
|
|
63
|
+
|
|
64
|
+
# Enable auto-formatting of code examples in docstrings. Markdown,
|
|
65
|
+
# reStructuredText code/literal blocks and doctests are all supported.
|
|
66
|
+
#
|
|
67
|
+
# This is currently disabled by default, but it is planned for this
|
|
68
|
+
# to be opt-out in the future.
|
|
69
|
+
docstring-code-format = false
|
|
70
|
+
|
|
71
|
+
# Set the line length limit used when formatting code snippets in
|
|
72
|
+
# docstrings.
|
|
73
|
+
#
|
|
74
|
+
# This only has an effect when the `docstring-code-format` setting is
|
|
75
|
+
# enabled.
|
|
76
|
+
docstring-code-line-length = "dynamic"
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"python.testing.unittestEnabled": false,
|
|
3
|
+
"python.testing.pytestEnabled": true,
|
|
4
|
+
"python.analysis.typeCheckingMode": "basic",
|
|
5
|
+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
|
|
6
|
+
"[python]": {
|
|
7
|
+
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
8
|
+
"editor.codeActionsOnSave": {
|
|
9
|
+
"source.fixAll": "explicit",
|
|
10
|
+
"source.organizeImports": "explicit"
|
|
11
|
+
},
|
|
12
|
+
"files.eol": "\n"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "2.0.0",
|
|
3
|
+
"tasks": [
|
|
4
|
+
{
|
|
5
|
+
"label": "run pre-commit",
|
|
6
|
+
"type": "shell",
|
|
7
|
+
"command": "pre-commit run --all-files",
|
|
8
|
+
"problemMatcher": []
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"label": "update pre-commit",
|
|
12
|
+
"type": "shell",
|
|
13
|
+
"command": "pre-commit autoupdate",
|
|
14
|
+
"problemMatcher": []
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|