shopware-api-client 1.2.2__tar.gz → 2.0.1__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.
Files changed (333) hide show
  1. shopware_api_client-2.0.1/.coveragerc.toml +15 -0
  2. shopware_api_client-2.0.1/.devcontainer/Dockerfile +4 -0
  3. shopware_api_client-2.0.1/.devcontainer/devcontainer-lock.json +9 -0
  4. shopware_api_client-2.0.1/.devcontainer/devcontainer.json +45 -0
  5. shopware_api_client-2.0.1/.devcontainer/docker-compose.yml +15 -0
  6. shopware_api_client-2.0.1/.devcontainer/requirements.txt +1 -0
  7. shopware_api_client-2.0.1/.devcontainer/scripts/initialize.sh +3 -0
  8. shopware_api_client-2.0.1/.devcontainer/scripts/post-create.sh +12 -0
  9. shopware_api_client-2.0.1/.devcontainer/scripts/post-start.sh +1 -0
  10. shopware_api_client-2.0.1/.github/dependabot.yml +37 -0
  11. shopware_api_client-2.0.1/.github/workflows/continuous_delivery.yml +34 -0
  12. shopware_api_client-2.0.1/.github/workflows/continuous_integration.yml +47 -0
  13. shopware_api_client-2.0.1/.gitignore +162 -0
  14. shopware_api_client-2.0.1/.pre-commit-config.yaml +31 -0
  15. shopware_api_client-2.0.1/.python-version +1 -0
  16. shopware_api_client-2.0.1/.ruff.toml +76 -0
  17. shopware_api_client-2.0.1/.vscode/settings.json +14 -0
  18. shopware_api_client-2.0.1/.vscode/tasks.json +17 -0
  19. shopware_api_client-1.2.2/README.md → shopware_api_client-2.0.1/PKG-INFO +449 -393
  20. shopware_api_client-1.2.2/PKG-INFO → shopware_api_client-2.0.1/README.md +427 -423
  21. shopware_api_client-2.0.1/poetry.lock +1213 -0
  22. shopware_api_client-1.2.2/pyproject.toml → shopware_api_client-2.0.1/pyproject copy.toml +1 -1
  23. shopware_api_client-2.0.1/pyproject.toml +51 -0
  24. shopware_api_client-2.0.1/pytest.ini +8 -0
  25. shopware_api_client-2.0.1/src/shopware_api_client/auth.py +79 -0
  26. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/base.py +159 -161
  27. shopware_api_client-2.0.1/src/shopware_api_client/cache.py +82 -0
  28. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/client.py +23 -32
  29. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/__init__.py +5 -5
  30. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/api_info.py +1 -1
  31. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/app.py +1 -1
  32. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/relations.py +1 -1
  33. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/exceptions.py +2 -2
  34. shopware_api_client-2.0.1/src/shopware_api_client/py.typed +0 -0
  35. shopware_api_client-2.0.1/src/shopware_api_client/structs/__init__.py +0 -0
  36. shopware_api_client-2.0.1/tests/__init__.py +0 -0
  37. shopware_api_client-2.0.1/tests/test_auth.py +172 -0
  38. shopware_api_client-2.0.1/tests/test_base_fields.py +50 -0
  39. shopware_api_client-2.0.1/tests/test_client.py +312 -0
  40. shopware_api_client-2.0.1/tests/test_config.py +59 -0
  41. shopware_api_client-2.0.1/tests/test_endpoint_search_mixin.py +80 -0
  42. shopware_api_client-2.0.1/tests/test_exceptions.py +126 -0
  43. shopware_api_client-2.0.1/tests/test_thumbnail.py +27 -0
  44. shopware_api_client-2.0.1/ty.toml +2 -0
  45. shopware_api_client-2.0.1/uv.lock +2019 -0
  46. shopware_api_client-1.2.2/src/shopware_api_client/cache.py +0 -157
  47. /shopware_api_client-1.2.2/src/shopware_api_client/__init__.py → /shopware_api_client-2.0.1/.devcontainer/.env +0 -0
  48. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/LICENSE +0 -0
  49. /shopware_api_client-1.2.2/src/shopware_api_client/endpoints/__init__.py → /shopware_api_client-2.0.1/docs/README.md +0 -0
  50. {shopware_api_client-1.2.2/src/shopware_api_client/endpoints/admin/commercial → shopware_api_client-2.0.1/src/shopware_api_client}/__init__.py +0 -0
  51. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/config.py +0 -0
  52. {shopware_api_client-1.2.2/src/shopware_api_client/endpoints/admin/core → shopware_api_client-2.0.1/src/shopware_api_client/endpoints}/__init__.py +0 -0
  53. {shopware_api_client-1.2.2/src/shopware_api_client/endpoints/store/core → shopware_api_client-2.0.1/src/shopware_api_client/endpoints/admin/commercial}/__init__.py +0 -0
  54. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/commercial/b2b_components_role.py +0 -0
  55. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/commercial/b2b_components_shopping_list.py +0 -0
  56. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/commercial/b2b_components_shopping_list_line_item.py +0 -0
  57. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/commercial/b2b_employee.py +0 -0
  58. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/commercial/dynamic_access.py +0 -0
  59. {shopware_api_client-1.2.2/src/shopware_api_client/models → shopware_api_client-2.0.1/src/shopware_api_client/endpoints/admin/core}/__init__.py +0 -0
  60. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/acl_role.py +0 -0
  61. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/app_script_condition.py +0 -0
  62. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/category.py +0 -0
  63. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/cms_block.py +0 -0
  64. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/cms_page.py +0 -0
  65. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/cms_section.py +0 -0
  66. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/cms_slot.py +0 -0
  67. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/country.py +0 -0
  68. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/country_state.py +0 -0
  69. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/currency.py +0 -0
  70. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/currency_country_rounding.py +0 -0
  71. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/custom_entity.py +0 -0
  72. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/custom_field.py +0 -0
  73. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/customer.py +0 -0
  74. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/customer_address.py +0 -0
  75. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/customer_group.py +0 -0
  76. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/customer_recovery.py +0 -0
  77. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/customer_wishlist.py +0 -0
  78. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/customer_wishlist_product.py +0 -0
  79. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/delivery_time.py +0 -0
  80. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/document.py +0 -0
  81. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/document_base_config.py +0 -0
  82. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/document_base_config_sales_channel.py +0 -0
  83. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/document_type.py +0 -0
  84. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/integration.py +0 -0
  85. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/landing_page.py +0 -0
  86. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/language.py +0 -0
  87. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/locale.py +0 -0
  88. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/main_category.py +0 -0
  89. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/media.py +0 -0
  90. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/media_default_folder.py +0 -0
  91. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/media_folder.py +0 -0
  92. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/media_folder_configuration.py +0 -0
  93. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/media_thumbnail.py +0 -0
  94. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/media_thumbnail_size.py +0 -0
  95. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order.py +0 -0
  96. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order_address.py +0 -0
  97. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order_customer.py +0 -0
  98. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order_delivery.py +0 -0
  99. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order_delivery_position.py +0 -0
  100. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order_line_item.py +0 -0
  101. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order_line_item_download.py +0 -0
  102. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order_transaction.py +0 -0
  103. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order_transaction_capture.py +0 -0
  104. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order_transaction_capture_refund.py +0 -0
  105. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/order_transaction_capture_refund_position.py +0 -0
  106. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/payment_method.py +0 -0
  107. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product.py +0 -0
  108. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_configurator_setting.py +0 -0
  109. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_cross_selling.py +0 -0
  110. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_cross_selling_assigned_products.py +0 -0
  111. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_download.py +0 -0
  112. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_export.py +0 -0
  113. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_feature_set.py +0 -0
  114. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_manufacturer.py +0 -0
  115. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_media.py +0 -0
  116. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_price.py +0 -0
  117. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_review.py +0 -0
  118. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_search_keyword.py +0 -0
  119. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_stream.py +0 -0
  120. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_visibility.py +0 -0
  121. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/product_warehouse.py +0 -0
  122. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/promotion.py +0 -0
  123. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/promotion_discount.py +0 -0
  124. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/promotion_discount_prices.py +0 -0
  125. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/property_group.py +0 -0
  126. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/property_group_option.py +0 -0
  127. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/rule.py +0 -0
  128. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/rule_condition.py +0 -0
  129. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/sales_channel.py +0 -0
  130. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/sales_channel_domain.py +0 -0
  131. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/salutation.py +0 -0
  132. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/seo_url.py +0 -0
  133. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/shipping_method.py +0 -0
  134. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/shipping_method_price.py +0 -0
  135. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/state_machine.py +0 -0
  136. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/state_machine_history.py +0 -0
  137. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/state_machine_state.py +0 -0
  138. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/state_machine_transition.py +0 -0
  139. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/system_config.py +0 -0
  140. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/tag.py +0 -0
  141. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/tax.py +0 -0
  142. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/tax_rule.py +0 -0
  143. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/tax_rule_type.py +0 -0
  144. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/unit.py +0 -0
  145. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/user.py +0 -0
  146. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/warehouse.py +0 -0
  147. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/warehouse_group.py +0 -0
  148. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/admin/core/warehouse_group_warehouse.py +0 -0
  149. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/base_fields.py +0 -0
  150. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/__init__.py +0 -0
  151. {shopware_api_client-1.2.2/src/shopware_api_client/structs → shopware_api_client-2.0.1/src/shopware_api_client/endpoints/store/core}/__init__.py +0 -0
  152. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/address.py +0 -0
  153. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/cart.py +0 -0
  154. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/category.py +0 -0
  155. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/cms_block.py +0 -0
  156. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/cms_page.py +0 -0
  157. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/cms_section.py +0 -0
  158. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/cms_slot.py +0 -0
  159. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/context.py +0 -0
  160. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/country.py +0 -0
  161. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/country_state.py +0 -0
  162. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/currency.py +0 -0
  163. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/customer.py +0 -0
  164. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/customer_group.py +0 -0
  165. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/delivery_time.py +0 -0
  166. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/document.py +0 -0
  167. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/document_type.py +0 -0
  168. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/landing_page.py +0 -0
  169. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/language.py +0 -0
  170. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/locale.py +0 -0
  171. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/main_category.py +0 -0
  172. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/media.py +0 -0
  173. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/media_thumbnail.py +0 -0
  174. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/order.py +0 -0
  175. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/order_address.py +0 -0
  176. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/order_customer.py +0 -0
  177. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/order_delivery.py +0 -0
  178. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/order_delivery_position.py +0 -0
  179. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/order_line_item.py +0 -0
  180. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/order_transaction.py +0 -0
  181. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/order_transaction_capture.py +0 -0
  182. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/order_transaction_capture_refund.py +0 -0
  183. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/order_transaction_capture_refund_position.py +0 -0
  184. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/payment_method.py +0 -0
  185. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/product.py +0 -0
  186. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/product_configurator_setting.py +0 -0
  187. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/product_cross_selling.py +0 -0
  188. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/product_download.py +0 -0
  189. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/product_manufacturer.py +0 -0
  190. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/product_media.py +0 -0
  191. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/product_review.py +0 -0
  192. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/product_stream.py +0 -0
  193. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/property_group.py +0 -0
  194. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/property_group_option.py +0 -0
  195. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/rule.py +0 -0
  196. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/sales_channel.py +0 -0
  197. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/sales_channel_domain.py +0 -0
  198. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/salutation.py +0 -0
  199. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/seo_url.py +0 -0
  200. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/shipping_method.py +0 -0
  201. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/shipping_method_price.py +0 -0
  202. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/state_machine_state.py +0 -0
  203. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/tag.py +0 -0
  204. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/tax.py +0 -0
  205. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/endpoints/store/core/unit.py +0 -0
  206. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/fieldsets.py +0 -0
  207. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/logging.py +0 -0
  208. /shopware_api_client-1.2.2/src/shopware_api_client/py.typed → /shopware_api_client-2.0.1/src/shopware_api_client/models/__init__.py +0 -0
  209. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/acl_role.py +0 -0
  210. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/app.py +0 -0
  211. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/app_script_condition.py +0 -0
  212. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/b2b_components_role.py +0 -0
  213. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/b2b_components_shopping_list.py +0 -0
  214. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/b2b_components_shopping_list_line_item.py +0 -0
  215. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/b2b_employee.py +0 -0
  216. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/category.py +0 -0
  217. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/cms_block.py +0 -0
  218. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/cms_page.py +0 -0
  219. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/cms_section.py +0 -0
  220. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/cms_slot.py +0 -0
  221. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/country.py +0 -0
  222. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/country_state.py +0 -0
  223. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/currency.py +0 -0
  224. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/currency_country_rounding.py +0 -0
  225. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/custom_entity.py +0 -0
  226. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/custom_field.py +0 -0
  227. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/customer.py +0 -0
  228. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/customer_address.py +0 -0
  229. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/customer_group.py +0 -0
  230. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/customer_recovery.py +0 -0
  231. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/customer_wishlist.py +0 -0
  232. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/customer_wishlist_product.py +0 -0
  233. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/delivery_time.py +0 -0
  234. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/document.py +0 -0
  235. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/document_base_config.py +0 -0
  236. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/document_base_config_sales_channel.py +0 -0
  237. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/document_type.py +0 -0
  238. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/dynamic_access.py +0 -0
  239. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/integration.py +0 -0
  240. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/landing_page.py +0 -0
  241. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/language.py +0 -0
  242. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/locale.py +0 -0
  243. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/main_category.py +0 -0
  244. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/media.py +0 -0
  245. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/media_default_folder.py +0 -0
  246. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/media_folder.py +0 -0
  247. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/media_folder_configuration.py +0 -0
  248. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/media_thumbnail.py +0 -0
  249. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/media_thumbnail_size.py +0 -0
  250. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order.py +0 -0
  251. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order_address.py +0 -0
  252. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order_customer.py +0 -0
  253. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order_delivery.py +0 -0
  254. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order_delivery_position.py +0 -0
  255. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order_line_item.py +0 -0
  256. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order_line_item_download.py +0 -0
  257. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order_transaction.py +0 -0
  258. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order_transaction_capture.py +0 -0
  259. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order_transaction_capture_refund.py +0 -0
  260. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/order_transaction_capture_refund_position.py +0 -0
  261. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/payment_method.py +0 -0
  262. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product.py +0 -0
  263. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_configurator_setting.py +0 -0
  264. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_cross_selling.py +0 -0
  265. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_cross_selling_assigned_products.py +0 -0
  266. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_download.py +0 -0
  267. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_export.py +0 -0
  268. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_feature_set.py +0 -0
  269. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_manufacturer.py +0 -0
  270. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_media.py +0 -0
  271. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_price.py +0 -0
  272. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_review.py +0 -0
  273. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_search_keyword.py +0 -0
  274. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_stream.py +0 -0
  275. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_visibility.py +0 -0
  276. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/product_warehouse.py +0 -0
  277. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/promotion.py +0 -0
  278. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/promotion_discount.py +0 -0
  279. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/promotion_discount_prices.py +0 -0
  280. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/property_group.py +0 -0
  281. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/property_group_option.py +0 -0
  282. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/rule.py +0 -0
  283. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/rule_condition.py +0 -0
  284. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/sales_channel.py +0 -0
  285. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/sales_channel_domain.py +0 -0
  286. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/salutation.py +0 -0
  287. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/seo_url.py +0 -0
  288. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/shipping_method.py +0 -0
  289. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/shipping_method_price.py +0 -0
  290. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/state_machine.py +0 -0
  291. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/state_machine_history.py +0 -0
  292. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/state_machine_state.py +0 -0
  293. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/state_machine_transition.py +0 -0
  294. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/system_config.py +0 -0
  295. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/tag.py +0 -0
  296. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/tax.py +0 -0
  297. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/tax_rule.py +0 -0
  298. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/tax_rule_type.py +0 -0
  299. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/unit.py +0 -0
  300. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/user.py +0 -0
  301. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/warehouse.py +0 -0
  302. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/warehouse_group.py +0 -0
  303. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/models/warehouse_group_warehouse.py +0 -0
  304. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/absolute_price_definition.py +0 -0
  305. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/calculated_cheapest_price.py +0 -0
  306. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/calculated_price.py +0 -0
  307. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/calculated_tax.py +0 -0
  308. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/cart.py +0 -0
  309. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/cart_price.py +0 -0
  310. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/cash_rounding_config.py +0 -0
  311. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/context.py +0 -0
  312. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/delivery.py +0 -0
  313. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/delivery_date.py +0 -0
  314. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/delivery_information.py +0 -0
  315. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/delivery_position.py +0 -0
  316. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/delivery_time.py +0 -0
  317. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/language_info.py +0 -0
  318. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/line_item.py +0 -0
  319. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/list_price.py +0 -0
  320. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/measurement_units.py +0 -0
  321. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/percentage_price_definition.py +0 -0
  322. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/price.py +0 -0
  323. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/quantity_information.py +0 -0
  324. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/quantity_price_definition.py +0 -0
  325. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/reference_price.py +0 -0
  326. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/reference_price_definition.py +0 -0
  327. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/regulation_price.py +0 -0
  328. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/sales_channel_context.py +0 -0
  329. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/shipping_location.py +0 -0
  330. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/tax_free_config.py +0 -0
  331. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/tax_rule.py +0 -0
  332. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/transaction.py +0 -0
  333. {shopware_api_client-1.2.2 → shopware_api_client-2.0.1}/src/shopware_api_client/structs/variant_listing_config.py +0 -0
@@ -0,0 +1,15 @@
1
+ [run]
2
+ relative_files = true
3
+ omit = [
4
+ "*/tests/*",
5
+ "**/conftest.py",
6
+ ]
7
+
8
+ [report]
9
+ fail_under = 70
10
+ show_missing = true
11
+ exclude_lines = [
12
+ "pragma: no cover",
13
+ "if TYPE_CHECKING:",
14
+ "raise NotImplementedError",
15
+ ]
@@ -0,0 +1,4 @@
1
+ FROM python:3.14.6-trixie
2
+ COPY --from=ghcr.io/astral-sh/uv:0.11.21 /uv /uvx /bin/
3
+
4
+ ENV PYTHONUNBUFFERED 1
@@ -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,3 @@
1
+ cd .devcontainer
2
+ docker compose pull
3
+ cd -
@@ -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
+ }