File tree Expand file tree Collapse file tree 6 files changed +30
-8
lines changed Expand file tree Collapse file tree 6 files changed +30
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ 1.0.0] ( https://www.github.com/ShipEngine/shipengine-python/compare/v1.0.0...v1.0.0 ) (2021-08-11)
4
4
5
-
6
5
### Miscellaneous Chores
7
6
8
- * release 1.0.0 ([ f6f702f] ( https://www.github.com/ShipEngine/shipengine-python/commit/f6f702fa3427508cd78953b88d62e4bf3a0f3bf1 ) )
7
+ - release 1.0.0 ([ f6f702f] ( https://www.github.com/ShipEngine/shipengine-python/commit/f6f702fa3427508cd78953b88d62e4bf3a0f3bf1 ) )
9
8
10
9
## 1.0.0 (2021-08-11)
11
10
12
-
13
11
### Miscellaneous Chores
14
12
15
- * release 1.0.0 ([ c1407d2] ( https://www.github.com/ShipEngine/shipengine-python/commit/c1407d2de88182c75ba6dafff1ab30a3ed71efc6 ) )
13
+ - release 1.0.0 ([ c1407d2] ( https://www.github.com/ShipEngine/shipengine-python/commit/c1407d2de88182c75ba6dafff1ab30a3ed71efc6 ) )
16
14
17
15
## 1.0.1
18
16
19
- * increase default timeout from 5s to 60s
17
+ - increase default timeout from 5s to 60s
18
+
19
+ ## 1.0.2
20
+
21
+ - Added error code FundingSourceMissingConfiguration
22
+ - Added error code FundingSourceError
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " shipengine"
3
- version = " 1.0.1 "
3
+ version = " 1.0.2 "
4
4
description = " The official Python library for ShipEngine API."
5
5
readme = " README.md"
6
6
authors = [
" ShipEngine <[email protected] >" ]
Original file line number Diff line number Diff line change 1
1
"""ShipEngine SDK."""
2
- __version__ = "1.0.1 "
2
+ __version__ = "1.0.2 "
3
3
4
4
import logging
5
5
from logging import NullHandler
Original file line number Diff line number Diff line change @@ -235,3 +235,13 @@ class ErrorCode(Enum):
235
235
ShipEngine only allows you to have one webhook of each type. If you would
236
236
like to replace a webhook with a new one, please delete the old one first.
237
237
"""
238
+
239
+ FUNDING_SOURCE_MISSING_CONFIGURATION = "funding_source_missing_configuration"
240
+ """
241
+ Funding source isnt properly configured and can't be used.
242
+ """
243
+
244
+ FUNDING_SOURCE_ERROR = "funding_source_error"
245
+ """
246
+ There was a problem with a funding source.
247
+ """
Original file line number Diff line number Diff line change @@ -48,5 +48,14 @@ class ErrorType(Enum):
48
48
AUTHORIZATION = "authorization"
49
49
"""General authorization error type."""
50
50
51
+ INTEGRATIONS = "integrations"
52
+ """General integrations error type."""
53
+
54
+ WALLET = "wallet"
55
+ """General wallet error type."""
56
+
57
+ FUNDING_SOURCES = "funding_sources"
58
+ """General funding sources error type."""
59
+
51
60
ERROR = "error"
52
61
"""Generic error."""
Original file line number Diff line number Diff line change 1
- __version__ = "1.0.1 "
1
+ __version__ = "1.0.2 "
You can’t perform that action at this time.
0 commit comments