wildberries-sdk 0.1.33__py3-none-any.whl → 0.1.35__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. wildberries_sdk/analytics/__init__.py +1 -1
  2. wildberries_sdk/analytics/api_client.py +1 -1
  3. wildberries_sdk/analytics/configuration.py +1 -1
  4. wildberries_sdk/communications/__init__.py +1 -1
  5. wildberries_sdk/communications/api_client.py +1 -1
  6. wildberries_sdk/communications/configuration.py +1 -1
  7. wildberries_sdk/finances/__init__.py +1 -1
  8. wildberries_sdk/finances/api_client.py +1 -1
  9. wildberries_sdk/finances/configuration.py +1 -1
  10. wildberries_sdk/general/__init__.py +1 -1
  11. wildberries_sdk/general/api_client.py +1 -1
  12. wildberries_sdk/general/configuration.py +1 -1
  13. wildberries_sdk/in_store_pickup/__init__.py +1 -1
  14. wildberries_sdk/in_store_pickup/api_client.py +1 -1
  15. wildberries_sdk/in_store_pickup/configuration.py +1 -1
  16. wildberries_sdk/orders_dbs/__init__.py +13 -5
  17. wildberries_sdk/orders_dbs/api/default_api.py +318 -27
  18. wildberries_sdk/orders_dbs/api_client.py +1 -1
  19. wildberries_sdk/orders_dbs/configuration.py +1 -1
  20. wildberries_sdk/orders_dbs/models/__init__.py +6 -2
  21. wildberries_sdk/orders_dbs/models/api_b2b_client_info.py +91 -0
  22. wildberries_sdk/orders_dbs/models/api_b2b_client_info_response.py +105 -0
  23. wildberries_sdk/orders_dbs/models/api_b2b_client_info_response_errors_inner.py +89 -0
  24. wildberries_sdk/orders_dbs/models/api_b2b_client_info_responses.py +97 -0
  25. wildberries_sdk/orders_dbs/models/{api_marketplace_v3_dbs_meta_customs_declaration_post_request.py → api_marketplace_v3_dbs_orders_meta_customs_declaration_post_request.py} +7 -7
  26. wildberries_sdk/orders_dbs/models/{api_marketplace_v3_dbs_meta_customs_declaration_post_request_orders_inner.py → api_marketplace_v3_dbs_orders_meta_customs_declaration_post_request_orders_inner.py} +4 -4
  27. wildberries_sdk/orders_dbw/__init__.py +1 -1
  28. wildberries_sdk/orders_dbw/api_client.py +1 -1
  29. wildberries_sdk/orders_dbw/configuration.py +1 -1
  30. wildberries_sdk/orders_fbs/__init__.py +1 -1
  31. wildberries_sdk/orders_fbs/api_client.py +1 -1
  32. wildberries_sdk/orders_fbs/configuration.py +1 -1
  33. wildberries_sdk/orders_fbw/__init__.py +1 -1
  34. wildberries_sdk/orders_fbw/api_client.py +1 -1
  35. wildberries_sdk/orders_fbw/configuration.py +1 -1
  36. wildberries_sdk/products/__init__.py +1 -1
  37. wildberries_sdk/products/api_client.py +1 -1
  38. wildberries_sdk/products/configuration.py +1 -1
  39. wildberries_sdk/promotion/__init__.py +1 -1
  40. wildberries_sdk/promotion/api_client.py +1 -1
  41. wildberries_sdk/promotion/configuration.py +1 -1
  42. wildberries_sdk/reports/__init__.py +1 -1
  43. wildberries_sdk/reports/api_client.py +1 -1
  44. wildberries_sdk/reports/configuration.py +1 -1
  45. wildberries_sdk/tariffs/__init__.py +1 -1
  46. wildberries_sdk/tariffs/api_client.py +1 -1
  47. wildberries_sdk/tariffs/configuration.py +1 -1
  48. wildberries_sdk/wbd/__init__.py +1 -1
  49. wildberries_sdk/wbd/api_client.py +1 -1
  50. wildberries_sdk/wbd/configuration.py +1 -1
  51. {wildberries_sdk-0.1.33.dist-info → wildberries_sdk-0.1.35.dist-info}/METADATA +3 -2
  52. {wildberries_sdk-0.1.33.dist-info → wildberries_sdk-0.1.35.dist-info}/RECORD +55 -51
  53. {wildberries_sdk-0.1.33.dist-info → wildberries_sdk-0.1.35.dist-info}/LICENSE +0 -0
  54. {wildberries_sdk-0.1.33.dist-info → wildberries_sdk-0.1.35.dist-info}/WHEEL +0 -0
  55. {wildberries_sdk-0.1.33.dist-info → wildberries_sdk-0.1.35.dist-info}/top_level.txt +0 -0
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "0.1.33"
17
+ __version__ = "0.1.35"
18
18
 
19
19
  # Define package exports
20
20
  __all__ = [
@@ -91,7 +91,7 @@ class ApiClient:
91
91
  self.default_headers[header_name] = header_value
92
92
  self.cookie = cookie
93
93
  # Set default User-Agent.
94
- self.user_agent = 'OpenAPI-Generator/0.1.33/python'
94
+ self.user_agent = 'OpenAPI-Generator/0.1.35/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -536,7 +536,7 @@ conf = wildberries_sdk.analytics.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: analytics\n"\
539
- "SDK Package Version: 0.1.33".\
539
+ "SDK Package Version: 0.1.35".\
540
540
  format(env=sys.platform, pyversion=sys.version)
541
541
 
542
542
  def get_host_settings(self) -> List[HostSetting]:
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "0.1.33"
17
+ __version__ = "0.1.35"
18
18
 
19
19
  # Define package exports
20
20
  __all__ = [
@@ -91,7 +91,7 @@ class ApiClient:
91
91
  self.default_headers[header_name] = header_value
92
92
  self.cookie = cookie
93
93
  # Set default User-Agent.
94
- self.user_agent = 'OpenAPI-Generator/0.1.33/python'
94
+ self.user_agent = 'OpenAPI-Generator/0.1.35/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -536,7 +536,7 @@ conf = wildberries_sdk.communications.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: communication\n"\
539
- "SDK Package Version: 0.1.33".\
539
+ "SDK Package Version: 0.1.35".\
540
540
  format(env=sys.platform, pyversion=sys.version)
541
541
 
542
542
  def get_host_settings(self) -> List[HostSetting]:
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "0.1.33"
17
+ __version__ = "0.1.35"
18
18
 
19
19
  # Define package exports
20
20
  __all__ = [
@@ -91,7 +91,7 @@ class ApiClient:
91
91
  self.default_headers[header_name] = header_value
92
92
  self.cookie = cookie
93
93
  # Set default User-Agent.
94
- self.user_agent = 'OpenAPI-Generator/0.1.33/python'
94
+ self.user_agent = 'OpenAPI-Generator/0.1.35/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -536,7 +536,7 @@ conf = wildberries_sdk.finances.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: finances\n"\
539
- "SDK Package Version: 0.1.33".\
539
+ "SDK Package Version: 0.1.35".\
540
540
  format(env=sys.platform, pyversion=sys.version)
541
541
 
542
542
  def get_host_settings(self) -> List[HostSetting]:
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "0.1.33"
17
+ __version__ = "0.1.35"
18
18
 
19
19
  # Define package exports
20
20
  __all__ = [
@@ -91,7 +91,7 @@ class ApiClient:
91
91
  self.default_headers[header_name] = header_value
92
92
  self.cookie = cookie
93
93
  # Set default User-Agent.
94
- self.user_agent = 'OpenAPI-Generator/0.1.33/python'
94
+ self.user_agent = 'OpenAPI-Generator/0.1.35/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -536,7 +536,7 @@ conf = wildberries_sdk.general.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: general\n"\
539
- "SDK Package Version: 0.1.33".\
539
+ "SDK Package Version: 0.1.35".\
540
540
  format(env=sys.platform, pyversion=sys.version)
541
541
 
542
542
  def get_host_settings(self) -> List[HostSetting]:
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "0.1.33"
17
+ __version__ = "0.1.35"
18
18
 
19
19
  # Define package exports
20
20
  __all__ = [
@@ -91,7 +91,7 @@ class ApiClient:
91
91
  self.default_headers[header_name] = header_value
92
92
  self.cookie = cookie
93
93
  # Set default User-Agent.
94
- self.user_agent = 'OpenAPI-Generator/0.1.33/python'
94
+ self.user_agent = 'OpenAPI-Generator/0.1.35/python'
95
95
  self.client_side_validation = configuration.client_side_validation
96
96
 
97
97
  def __enter__(self):
@@ -536,7 +536,7 @@ conf = wildberries_sdk.in_store_pickup.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: instorepickup\n"\
539
- "SDK Package Version: 0.1.33".\
539
+ "SDK Package Version: 0.1.35".\
540
540
  format(env=sys.platform, pyversion=sys.version)
541
541
 
542
542
  def get_host_settings(self) -> List[HostSetting]:
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "0.1.33"
17
+ __version__ = "0.1.35"
18
18
 
19
19
  # Define package exports
20
20
  __all__ = [
@@ -28,13 +28,17 @@ __all__ = [
28
28
  "ApiKeyError",
29
29
  "ApiAttributeError",
30
30
  "ApiException",
31
+ "ApiB2bClientInfo",
32
+ "ApiB2bClientInfoResponse",
33
+ "ApiB2bClientInfoResponseErrorsInner",
34
+ "ApiB2bClientInfoResponses",
31
35
  "ApiBatchError",
32
36
  "ApiBatchErrorResponse",
33
37
  "ApiError",
34
38
  "ApiGTIN",
35
39
  "ApiIMEI",
36
- "ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequest",
37
- "ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner",
40
+ "ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequest",
41
+ "ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequestOrdersInner",
38
42
  "ApiOrderCodeRequest",
39
43
  "ApiOrderGroupInner",
40
44
  "ApiOrderGroupsRequest",
@@ -100,13 +104,17 @@ from wildberries_sdk.orders_dbs.exceptions import ApiAttributeError as ApiAttrib
100
104
  from wildberries_sdk.orders_dbs.exceptions import ApiException as ApiException
101
105
 
102
106
  # import models into sdk package
107
+ from wildberries_sdk.orders_dbs.models.api_b2b_client_info import ApiB2bClientInfo as ApiB2bClientInfo
108
+ from wildberries_sdk.orders_dbs.models.api_b2b_client_info_response import ApiB2bClientInfoResponse as ApiB2bClientInfoResponse
109
+ from wildberries_sdk.orders_dbs.models.api_b2b_client_info_response_errors_inner import ApiB2bClientInfoResponseErrorsInner as ApiB2bClientInfoResponseErrorsInner
110
+ from wildberries_sdk.orders_dbs.models.api_b2b_client_info_responses import ApiB2bClientInfoResponses as ApiB2bClientInfoResponses
103
111
  from wildberries_sdk.orders_dbs.models.api_batch_error import ApiBatchError as ApiBatchError
104
112
  from wildberries_sdk.orders_dbs.models.api_batch_error_response import ApiBatchErrorResponse as ApiBatchErrorResponse
105
113
  from wildberries_sdk.orders_dbs.models.api_error import ApiError as ApiError
106
114
  from wildberries_sdk.orders_dbs.models.api_gtin import ApiGTIN as ApiGTIN
107
115
  from wildberries_sdk.orders_dbs.models.api_imei import ApiIMEI as ApiIMEI
108
- from wildberries_sdk.orders_dbs.models.api_marketplace_v3_dbs_meta_customs_declaration_post_request import ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequest as ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequest
109
- from wildberries_sdk.orders_dbs.models.api_marketplace_v3_dbs_meta_customs_declaration_post_request_orders_inner import ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner as ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner
116
+ from wildberries_sdk.orders_dbs.models.api_marketplace_v3_dbs_orders_meta_customs_declaration_post_request import ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequest as ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequest
117
+ from wildberries_sdk.orders_dbs.models.api_marketplace_v3_dbs_orders_meta_customs_declaration_post_request_orders_inner import ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequestOrdersInner as ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequestOrdersInner
110
118
  from wildberries_sdk.orders_dbs.models.api_order_code_request import ApiOrderCodeRequest as ApiOrderCodeRequest
111
119
  from wildberries_sdk.orders_dbs.models.api_order_group_inner import ApiOrderGroupInner as ApiOrderGroupInner
112
120
  from wildberries_sdk.orders_dbs.models.api_order_groups_request import ApiOrderGroupsRequest as ApiOrderGroupsRequest