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
@@ -0,0 +1,105 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Заказы DBS
5
+
6
+ <div class=\"description_important\"> Узнать больше о заказах DBS можно в <a href=\"https://seller.wildberries.ru/instructions/category/6572e024-7428-4db1-86a8-a4c7dbebbfcf?goBackOption=prevRoute&categoryId=5a8e1202-0865-45b7-acae-5d0afc7add56\">справочном центре</a> </div> Управление [сборочными заданиями](/openapi/orders-dbs#tag/Sborochnye-zadaniya-DBS) и [метаданными](/openapi/orders-dbs#tag/Metadannye-DBS) заказов DBS (Delivery by Seller).
7
+
8
+ The version of the OpenAPI document: order
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from wildberries_sdk.orders_dbs.models.api_b2b_client_info import ApiB2bClientInfo
23
+ from wildberries_sdk.orders_dbs.models.api_b2b_client_info_response_errors_inner import ApiB2bClientInfoResponseErrorsInner
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class ApiB2bClientInfoResponse(BaseModel):
28
+ """
29
+ ApiB2bClientInfoResponse
30
+ """ # noqa: E501
31
+ data: Optional[ApiB2bClientInfo] = None
32
+ errors: Optional[List[ApiB2bClientInfoResponseErrorsInner]] = Field(default=None, description="Детали ошибки")
33
+ is_error: StrictBool = Field(description="Есть ли ошибки", alias="isError")
34
+ order_id: StrictInt = Field(description="ID сборочного задания", alias="orderId")
35
+ __properties: ClassVar[List[str]] = ["data", "errors", "isError", "orderId"]
36
+
37
+ model_config = ConfigDict(
38
+ populate_by_name=True,
39
+ validate_assignment=True,
40
+ protected_namespaces=(),
41
+ )
42
+
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> Optional[Self]:
55
+ """Create an instance of ApiB2bClientInfoResponse from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self) -> Dict[str, Any]:
59
+ """Return the dictionary representation of the model using alias.
60
+
61
+ This has the following differences from calling pydantic's
62
+ `self.model_dump(by_alias=True)`:
63
+
64
+ * `None` is only added to the output dict for nullable fields that
65
+ were set at model initialization. Other fields with value `None`
66
+ are ignored.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ ])
70
+
71
+ _dict = self.model_dump(
72
+ by_alias=True,
73
+ exclude=excluded_fields,
74
+ exclude_none=True,
75
+ )
76
+ # override the default output from pydantic by calling `to_dict()` of data
77
+ if self.data:
78
+ _dict['data'] = self.data.to_dict()
79
+ # override the default output from pydantic by calling `to_dict()` of each item in errors (list)
80
+ _items = []
81
+ if self.errors:
82
+ for _item_errors in self.errors:
83
+ if _item_errors:
84
+ _items.append(_item_errors.to_dict())
85
+ _dict['errors'] = _items
86
+ return _dict
87
+
88
+ @classmethod
89
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
90
+ """Create an instance of ApiB2bClientInfoResponse from a dict"""
91
+ if obj is None:
92
+ return None
93
+
94
+ if not isinstance(obj, dict):
95
+ return cls.model_validate(obj)
96
+
97
+ _obj = cls.model_validate({
98
+ "data": ApiB2bClientInfo.from_dict(obj["data"]) if obj.get("data") is not None else None,
99
+ "errors": [ApiB2bClientInfoResponseErrorsInner.from_dict(_item) for _item in obj["errors"]] if obj.get("errors") is not None else None,
100
+ "isError": obj.get("isError"),
101
+ "orderId": obj.get("orderId")
102
+ })
103
+ return _obj
104
+
105
+
@@ -0,0 +1,89 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Заказы DBS
5
+
6
+ <div class=\"description_important\"> Узнать больше о заказах DBS можно в <a href=\"https://seller.wildberries.ru/instructions/category/6572e024-7428-4db1-86a8-a4c7dbebbfcf?goBackOption=prevRoute&categoryId=5a8e1202-0865-45b7-acae-5d0afc7add56\">справочном центре</a> </div> Управление [сборочными заданиями](/openapi/orders-dbs#tag/Sborochnye-zadaniya-DBS) и [метаданными](/openapi/orders-dbs#tag/Metadannye-DBS) заказов DBS (Delivery by Seller).
7
+
8
+ The version of the OpenAPI document: order
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class ApiB2bClientInfoResponseErrorsInner(BaseModel):
26
+ """
27
+ ApiB2bClientInfoResponseErrorsInner
28
+ """ # noqa: E501
29
+ code: Optional[StrictInt] = Field(default=None, description="Код ошибки")
30
+ detail: Optional[StrictStr] = Field(default=None, description="Описание ошибки")
31
+ __properties: ClassVar[List[str]] = ["code", "detail"]
32
+
33
+ model_config = ConfigDict(
34
+ populate_by_name=True,
35
+ validate_assignment=True,
36
+ protected_namespaces=(),
37
+ )
38
+
39
+
40
+ def to_str(self) -> str:
41
+ """Returns the string representation of the model using alias"""
42
+ return pprint.pformat(self.model_dump(by_alias=True))
43
+
44
+ def to_json(self) -> str:
45
+ """Returns the JSON representation of the model using alias"""
46
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
47
+ return json.dumps(self.to_dict())
48
+
49
+ @classmethod
50
+ def from_json(cls, json_str: str) -> Optional[Self]:
51
+ """Create an instance of ApiB2bClientInfoResponseErrorsInner from a JSON string"""
52
+ return cls.from_dict(json.loads(json_str))
53
+
54
+ def to_dict(self) -> Dict[str, Any]:
55
+ """Return the dictionary representation of the model using alias.
56
+
57
+ This has the following differences from calling pydantic's
58
+ `self.model_dump(by_alias=True)`:
59
+
60
+ * `None` is only added to the output dict for nullable fields that
61
+ were set at model initialization. Other fields with value `None`
62
+ are ignored.
63
+ """
64
+ excluded_fields: Set[str] = set([
65
+ ])
66
+
67
+ _dict = self.model_dump(
68
+ by_alias=True,
69
+ exclude=excluded_fields,
70
+ exclude_none=True,
71
+ )
72
+ return _dict
73
+
74
+ @classmethod
75
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
76
+ """Create an instance of ApiB2bClientInfoResponseErrorsInner from a dict"""
77
+ if obj is None:
78
+ return None
79
+
80
+ if not isinstance(obj, dict):
81
+ return cls.model_validate(obj)
82
+
83
+ _obj = cls.model_validate({
84
+ "code": obj.get("code"),
85
+ "detail": obj.get("detail")
86
+ })
87
+ return _obj
88
+
89
+
@@ -0,0 +1,97 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Заказы DBS
5
+
6
+ <div class=\"description_important\"> Узнать больше о заказах DBS можно в <a href=\"https://seller.wildberries.ru/instructions/category/6572e024-7428-4db1-86a8-a4c7dbebbfcf?goBackOption=prevRoute&categoryId=5a8e1202-0865-45b7-acae-5d0afc7add56\">справочном центре</a> </div> Управление [сборочными заданиями](/openapi/orders-dbs#tag/Sborochnye-zadaniya-DBS) и [метаданными](/openapi/orders-dbs#tag/Metadannye-DBS) заказов DBS (Delivery by Seller).
7
+
8
+ The version of the OpenAPI document: order
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from wildberries_sdk.orders_dbs.models.api_b2b_client_info_response import ApiB2bClientInfoResponse
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class ApiB2bClientInfoResponses(BaseModel):
27
+ """
28
+ ApiB2bClientInfoResponses
29
+ """ # noqa: E501
30
+ request_id: StrictStr = Field(description="Уникальный ID запроса", alias="requestId")
31
+ results: Optional[List[ApiB2bClientInfoResponse]] = None
32
+ __properties: ClassVar[List[str]] = ["requestId", "results"]
33
+
34
+ model_config = ConfigDict(
35
+ populate_by_name=True,
36
+ validate_assignment=True,
37
+ protected_namespaces=(),
38
+ )
39
+
40
+
41
+ def to_str(self) -> str:
42
+ """Returns the string representation of the model using alias"""
43
+ return pprint.pformat(self.model_dump(by_alias=True))
44
+
45
+ def to_json(self) -> str:
46
+ """Returns the JSON representation of the model using alias"""
47
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> Optional[Self]:
52
+ """Create an instance of ApiB2bClientInfoResponses from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self) -> Dict[str, Any]:
56
+ """Return the dictionary representation of the model using alias.
57
+
58
+ This has the following differences from calling pydantic's
59
+ `self.model_dump(by_alias=True)`:
60
+
61
+ * `None` is only added to the output dict for nullable fields that
62
+ were set at model initialization. Other fields with value `None`
63
+ are ignored.
64
+ """
65
+ excluded_fields: Set[str] = set([
66
+ ])
67
+
68
+ _dict = self.model_dump(
69
+ by_alias=True,
70
+ exclude=excluded_fields,
71
+ exclude_none=True,
72
+ )
73
+ # override the default output from pydantic by calling `to_dict()` of each item in results (list)
74
+ _items = []
75
+ if self.results:
76
+ for _item_results in self.results:
77
+ if _item_results:
78
+ _items.append(_item_results.to_dict())
79
+ _dict['results'] = _items
80
+ return _dict
81
+
82
+ @classmethod
83
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
84
+ """Create an instance of ApiB2bClientInfoResponses from a dict"""
85
+ if obj is None:
86
+ return None
87
+
88
+ if not isinstance(obj, dict):
89
+ return cls.model_validate(obj)
90
+
91
+ _obj = cls.model_validate({
92
+ "requestId": obj.get("requestId"),
93
+ "results": [ApiB2bClientInfoResponse.from_dict(_item) for _item in obj["results"]] if obj.get("results") is not None else None
94
+ })
95
+ return _obj
96
+
97
+
@@ -20,15 +20,15 @@ import json
20
20
  from pydantic import BaseModel, ConfigDict, Field
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
22
  from typing_extensions import Annotated
23
- from wildberries_sdk.orders_dbs.models.api_marketplace_v3_dbs_meta_customs_declaration_post_request_orders_inner import ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner
23
+ from wildberries_sdk.orders_dbs.models.api_marketplace_v3_dbs_orders_meta_customs_declaration_post_request_orders_inner import ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequestOrdersInner
24
24
  from typing import Optional, Set
25
25
  from typing_extensions import Self
26
26
 
27
- class ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequest(BaseModel):
27
+ class ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequest(BaseModel):
28
28
  """
29
- ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequest
29
+ ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequest
30
30
  """ # noqa: E501
31
- orders: Optional[Annotated[List[ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner], Field(max_length=1000)]] = None
31
+ orders: Optional[Annotated[List[ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequestOrdersInner], Field(max_length=1000)]] = None
32
32
  __properties: ClassVar[List[str]] = ["orders"]
33
33
 
34
34
  model_config = ConfigDict(
@@ -49,7 +49,7 @@ class ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequest(BaseModel):
49
49
 
50
50
  @classmethod
51
51
  def from_json(cls, json_str: str) -> Optional[Self]:
52
- """Create an instance of ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequest from a JSON string"""
52
+ """Create an instance of ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequest from a JSON string"""
53
53
  return cls.from_dict(json.loads(json_str))
54
54
 
55
55
  def to_dict(self) -> Dict[str, Any]:
@@ -81,7 +81,7 @@ class ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequest(BaseModel):
81
81
 
82
82
  @classmethod
83
83
  def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
84
- """Create an instance of ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequest from a dict"""
84
+ """Create an instance of ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequest from a dict"""
85
85
  if obj is None:
86
86
  return None
87
87
 
@@ -89,7 +89,7 @@ class ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequest(BaseModel):
89
89
  return cls.model_validate(obj)
90
90
 
91
91
  _obj = cls.model_validate({
92
- "orders": [ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner.from_dict(_item) for _item in obj["orders"]] if obj.get("orders") is not None else None
92
+ "orders": [ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequestOrdersInner.from_dict(_item) for _item in obj["orders"]] if obj.get("orders") is not None else None
93
93
  })
94
94
  return _obj
95
95
 
@@ -23,9 +23,9 @@ from typing_extensions import Annotated
23
23
  from typing import Optional, Set
24
24
  from typing_extensions import Self
25
25
 
26
- class ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner(BaseModel):
26
+ class ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequestOrdersInner(BaseModel):
27
27
  """
28
- ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner
28
+ ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequestOrdersInner
29
29
  """ # noqa: E501
30
30
  customs_declaration: Annotated[str, Field(min_length=17, strict=True, max_length=29)] = Field(description="Номер ГТД", alias="customsDeclaration")
31
31
  order_id: StrictInt = Field(description="ID сборочного задания", alias="orderId")
@@ -49,7 +49,7 @@ class ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner(BaseModel)
49
49
 
50
50
  @classmethod
51
51
  def from_json(cls, json_str: str) -> Optional[Self]:
52
- """Create an instance of ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner from a JSON string"""
52
+ """Create an instance of ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequestOrdersInner from a JSON string"""
53
53
  return cls.from_dict(json.loads(json_str))
54
54
 
55
55
  def to_dict(self) -> Dict[str, Any]:
@@ -74,7 +74,7 @@ class ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner(BaseModel)
74
74
 
75
75
  @classmethod
76
76
  def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
77
- """Create an instance of ApiMarketplaceV3DbsMetaCustomsDeclarationPostRequestOrdersInner from a dict"""
77
+ """Create an instance of ApiMarketplaceV3DbsOrdersMetaCustomsDeclarationPostRequestOrdersInner from a dict"""
78
78
  if obj is None:
79
79
  return None
80
80
 
@@ -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.orders_dbw.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: ordersdbw\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.orders_fbs.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: order\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.orders_fbw.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: ordersfbw\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.products.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: products\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.promotion.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: promotion\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.reports.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: reports\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.tariffs.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: tariffs\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.wbd.Configuration(
536
536
  "OS: {env}\n"\
537
537
  "Python Version: {pyversion}\n"\
538
538
  "Version of the API: wbd\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]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: wildberries-sdk
3
- Version: 0.1.33
3
+ Version: 0.1.35
4
4
  Summary: Wildberries OpenAPI clients (generated).
5
5
  Author-email: Evgenii Lazarev <elazarev@gmail.com>
6
6
  License: MIT
@@ -182,7 +182,8 @@ print(feedbacks)
182
182
  - `orders_dbw.DefaultApi.api_v3_dbw_orders_stickers_post` — `POST /api/v3/dbw/orders/stickers` — Получить стикеры сборочных заданий
183
183
 
184
184
  ### orders_dbs (`orders_dbs`)
185
- - `orders_dbs.DefaultApi.api_marketplace_v3_dbs_meta_customs_declaration_post` — `POST /api/marketplace/v3/dbs/meta/customs-declaration` — Закрепить за сборочными заданиями номер ГТД
185
+ - `orders_dbs.DefaultApi.api_marketplace_v3_dbs_orders_b2b_info_post` — `POST /api/marketplace/v3/dbs/orders/b2b/info` — Информация о покупателе B2B
186
+ - `orders_dbs.DefaultApi.api_marketplace_v3_dbs_orders_meta_customs_declaration_post` — `POST /api/marketplace/v3/dbs/orders/meta/customs-declaration` — Закрепить за сборочными заданиями номер ГТД
186
187
  - `orders_dbs.DefaultApi.api_marketplace_v3_dbs_orders_meta_delete_post` — `POST /api/marketplace/v3/dbs/orders/meta/delete` — Удалить метаданные сборочных заданий
187
188
  - `orders_dbs.DefaultApi.api_marketplace_v3_dbs_orders_meta_gtin_post` — `POST /api/marketplace/v3/dbs/orders/meta/gtin` — Закрепить GTIN за сборочными заданиями
188
189
  - `orders_dbs.DefaultApi.api_marketplace_v3_dbs_orders_meta_imei_post` — `POST /api/marketplace/v3/dbs/orders/meta/imei` — Закрепить IMEI за сборочными заданиями