Skip to content

Commit cf49ec7

Browse files
authored
API version 2.1.0 See https://docs.patch.io/#/changelog for changes (#72)
* API version 2.1.0 See https://docs.patch.io/#/changelog for changes * Pin ubuntu image to be able to run python 3.6 * Use swagger version 2 * Update expected test results for estimates
1 parent 171cb92 commit cf49ec7

23 files changed

+574
-18
lines changed

.github/workflows/publish.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ on:
55

66
jobs:
77
publish:
8+
# 03/27/23: it looks like there are issues with the tarballs for all python 3.6 versions
9+
# that are on ubuntu-22.04 (ubuntu-latest at the time). To maintain python compatibility
10+
# we're pinning ubuntu-20.04 so that we can properly run install python 3.6.
11+
#
12+
# As soon as this issue is addressed, we should put the image back to ubuntu-latest:
13+
# https://github.com/actions/setup-python/issues/544
814
name: Publish
9-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-20.04
1016
env:
1117
TARGET_URL: https://pypi.org/project/patch-api/
1218
steps:

.github/workflows/test.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@ jobs:
1414
- uses: psf/black@stable
1515

1616
build-and-test:
17-
runs-on: ubuntu-latest
17+
# 03/27/23: it looks like there are issues with the tarballs for all python 3.6 versions
18+
# that are on ubuntu-22.04 (ubuntu-latest at the time). To maintain python compatibility
19+
# we're pinning ubuntu-20.04 so that we can properly run install python 3.6.
20+
#
21+
# As soon as this issue is addressed, we should put the image back to ubuntu-latest:
22+
# https://github.com/actions/setup-python/issues/544
23+
runs-on: ubuntu-20.04
1824
name: Python Library tests
1925
steps:
2026
- name: Check out code
@@ -24,6 +30,7 @@ jobs:
2430
uses: actions/setup-python@v2
2531
with:
2632
python-version: '3.6'
33+
2734
- name: Run tests
2835
env:
2936
SANDBOX_API_KEY: ${{ secrets.SANDBOX_API_KEY }}

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.1.0] - 2023-04-04
9+
10+
### Added
11+
12+
- Adds optional `vintage_start_year` and `vintage_end_year` fields to `order` creation
13+
- Adds optional `vintage_start_year` and `vintage_end_year` fields to `order_line_item` create and update
14+
- Adds optional `vintage_start_year` and `vintage_end_year` fields to `inventory` creation
15+
- Adds `vintage_start_year` and `vintage_end_year` fields to `order` response
16+
- Adds `vintage_start_year` and `vintage_end_year` fields to `order_line_item` response
17+
- Adds optional `carrier_scac` field to `patch.estimates.create_road_shipping_estimate`
18+
- Deprecates `create_shipping_estimate` in favor of `create_ecommerce_estimate`
19+
820
## [1.24.2] - 2022-08-10
921

1022
### Added

patch_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "2.0.0"
18+
__version__ = "2.1.0"
1919

2020
# import ApiClient
2121
from patch_api.api_client import ApiClient

patch_api/api/estimates_api.py

+30
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ class EstimatesApi(object):
7979
"origin_postal_code",
8080
"truck_weight_t",
8181
"vessel_imo",
82+
"vintage_start_year",
83+
"vintage_end_year",
8284
]
8385

8486
def __init__(self, api_client=None):
@@ -203,6 +205,8 @@ def create_air_shipping_estimate_with_http_info(
203205
all_params.append("origin_postal_code")
204206
all_params.append("truck_weight_t")
205207
all_params.append("vessel_imo")
208+
all_params.append("vintage_start_year")
209+
all_params.append("vintage_end_year")
206210

207211
for key, val in six.iteritems(local_var_params["kwargs"]):
208212
if key not in all_params:
@@ -399,6 +403,8 @@ def create_bitcoin_estimate_with_http_info(
399403
all_params.append("origin_postal_code")
400404
all_params.append("truck_weight_t")
401405
all_params.append("vessel_imo")
406+
all_params.append("vintage_start_year")
407+
all_params.append("vintage_end_year")
402408

403409
for key, val in six.iteritems(local_var_params["kwargs"]):
404410
if key not in all_params:
@@ -598,6 +604,8 @@ def create_ecommerce_estimate_with_http_info(
598604
all_params.append("origin_postal_code")
599605
all_params.append("truck_weight_t")
600606
all_params.append("vessel_imo")
607+
all_params.append("vintage_start_year")
608+
all_params.append("vintage_end_year")
601609

602610
for key, val in six.iteritems(local_var_params["kwargs"]):
603611
if key not in all_params:
@@ -794,6 +802,8 @@ def create_ethereum_estimate_with_http_info(
794802
all_params.append("origin_postal_code")
795803
all_params.append("truck_weight_t")
796804
all_params.append("vessel_imo")
805+
all_params.append("vintage_start_year")
806+
all_params.append("vintage_end_year")
797807

798808
for key, val in six.iteritems(local_var_params["kwargs"]):
799809
if key not in all_params:
@@ -990,6 +1000,8 @@ def create_flight_estimate_with_http_info(
9901000
all_params.append("origin_postal_code")
9911001
all_params.append("truck_weight_t")
9921002
all_params.append("vessel_imo")
1003+
all_params.append("vintage_start_year")
1004+
all_params.append("vintage_end_year")
9931005

9941006
for key, val in six.iteritems(local_var_params["kwargs"]):
9951007
if key not in all_params:
@@ -1186,6 +1198,8 @@ def create_hotel_estimate_with_http_info(
11861198
all_params.append("origin_postal_code")
11871199
all_params.append("truck_weight_t")
11881200
all_params.append("vessel_imo")
1201+
all_params.append("vintage_start_year")
1202+
all_params.append("vintage_end_year")
11891203

11901204
for key, val in six.iteritems(local_var_params["kwargs"]):
11911205
if key not in all_params:
@@ -1382,6 +1396,8 @@ def create_mass_estimate_with_http_info(
13821396
all_params.append("origin_postal_code")
13831397
all_params.append("truck_weight_t")
13841398
all_params.append("vessel_imo")
1399+
all_params.append("vintage_start_year")
1400+
all_params.append("vintage_end_year")
13851401

13861402
for key, val in six.iteritems(local_var_params["kwargs"]):
13871403
if key not in all_params:
@@ -1581,6 +1597,8 @@ def create_rail_shipping_estimate_with_http_info(
15811597
all_params.append("origin_postal_code")
15821598
all_params.append("truck_weight_t")
15831599
all_params.append("vessel_imo")
1600+
all_params.append("vintage_start_year")
1601+
all_params.append("vintage_end_year")
15841602

15851603
for key, val in six.iteritems(local_var_params["kwargs"]):
15861604
if key not in all_params:
@@ -1780,6 +1798,8 @@ def create_road_shipping_estimate_with_http_info(
17801798
all_params.append("origin_postal_code")
17811799
all_params.append("truck_weight_t")
17821800
all_params.append("vessel_imo")
1801+
all_params.append("vintage_start_year")
1802+
all_params.append("vintage_end_year")
17831803

17841804
for key, val in six.iteritems(local_var_params["kwargs"]):
17851805
if key not in all_params:
@@ -1979,6 +1999,8 @@ def create_sea_shipping_estimate_with_http_info(
19791999
all_params.append("origin_postal_code")
19802000
all_params.append("truck_weight_t")
19812001
all_params.append("vessel_imo")
2002+
all_params.append("vintage_start_year")
2003+
all_params.append("vintage_end_year")
19822004

19832005
for key, val in six.iteritems(local_var_params["kwargs"]):
19842006
if key not in all_params:
@@ -2175,6 +2197,8 @@ def create_shipping_estimate_with_http_info(
21752197
all_params.append("origin_postal_code")
21762198
all_params.append("truck_weight_t")
21772199
all_params.append("vessel_imo")
2200+
all_params.append("vintage_start_year")
2201+
all_params.append("vintage_end_year")
21782202

21792203
for key, val in six.iteritems(local_var_params["kwargs"]):
21802204
if key not in all_params:
@@ -2371,6 +2395,8 @@ def create_vehicle_estimate_with_http_info(
23712395
all_params.append("origin_postal_code")
23722396
all_params.append("truck_weight_t")
23732397
all_params.append("vessel_imo")
2398+
all_params.append("vintage_start_year")
2399+
all_params.append("vintage_end_year")
23742400

23752401
for key, val in six.iteritems(local_var_params["kwargs"]):
23762402
if key not in all_params:
@@ -2561,6 +2587,8 @@ def retrieve_estimate_with_http_info(self, id, **kwargs): # noqa: E501
25612587
all_params.append("origin_postal_code")
25622588
all_params.append("truck_weight_t")
25632589
all_params.append("vessel_imo")
2590+
all_params.append("vintage_start_year")
2591+
all_params.append("vintage_end_year")
25642592

25652593
for key, val in six.iteritems(local_var_params["kwargs"]):
25662594
if key not in all_params:
@@ -2741,6 +2769,8 @@ def retrieve_estimates_with_http_info(self, **kwargs): # noqa: E501
27412769
all_params.append("origin_postal_code")
27422770
all_params.append("truck_weight_t")
27432771
all_params.append("vessel_imo")
2772+
all_params.append("vintage_start_year")
2773+
all_params.append("vintage_end_year")
27442774

27452775
for key, val in six.iteritems(local_var_params["kwargs"]):
27462776
if key not in all_params:

patch_api/api/order_line_items_api.py

+8
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ class OrderLineItemsApi(object):
7979
"origin_postal_code",
8080
"truck_weight_t",
8181
"vessel_imo",
82+
"vintage_start_year",
83+
"vintage_end_year",
8284
]
8385

8486
def __init__(self, api_client=None):
@@ -206,6 +208,8 @@ def create_order_line_item_with_http_info(
206208
all_params.append("origin_postal_code")
207209
all_params.append("truck_weight_t")
208210
all_params.append("vessel_imo")
211+
all_params.append("vintage_start_year")
212+
all_params.append("vintage_end_year")
209213

210214
for key, val in six.iteritems(local_var_params["kwargs"]):
211215
if key not in all_params:
@@ -411,6 +415,8 @@ def delete_order_line_item_with_http_info(
411415
all_params.append("origin_postal_code")
412416
all_params.append("truck_weight_t")
413417
all_params.append("vessel_imo")
418+
all_params.append("vintage_start_year")
419+
all_params.append("vintage_end_year")
414420

415421
for key, val in six.iteritems(local_var_params["kwargs"]):
416422
if key not in all_params:
@@ -618,6 +624,8 @@ def update_order_line_item_with_http_info(
618624
all_params.append("origin_postal_code")
619625
all_params.append("truck_weight_t")
620626
all_params.append("vessel_imo")
627+
all_params.append("vintage_start_year")
628+
all_params.append("vintage_end_year")
621629

622630
for key, val in six.iteritems(local_var_params["kwargs"]):
623631
if key not in all_params:

patch_api/api/orders_api.py

+14
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ class OrdersApi(object):
7979
"origin_postal_code",
8080
"truck_weight_t",
8181
"vessel_imo",
82+
"vintage_start_year",
83+
"vintage_end_year",
8284
]
8385

8486
def __init__(self, api_client=None):
@@ -194,6 +196,8 @@ def cancel_order_with_http_info(self, id, **kwargs): # noqa: E501
194196
all_params.append("origin_postal_code")
195197
all_params.append("truck_weight_t")
196198
all_params.append("vessel_imo")
199+
all_params.append("vintage_start_year")
200+
all_params.append("vintage_end_year")
197201

198202
for key, val in six.iteritems(local_var_params["kwargs"]):
199203
if key not in all_params:
@@ -376,6 +380,8 @@ def create_order_with_http_info(self, create_order_request, **kwargs): # noqa:
376380
all_params.append("origin_postal_code")
377381
all_params.append("truck_weight_t")
378382
all_params.append("vessel_imo")
383+
all_params.append("vintage_start_year")
384+
all_params.append("vintage_end_year")
379385

380386
for key, val in six.iteritems(local_var_params["kwargs"]):
381387
if key not in all_params:
@@ -566,6 +572,8 @@ def delete_order_with_http_info(self, uid, **kwargs): # noqa: E501
566572
all_params.append("origin_postal_code")
567573
all_params.append("truck_weight_t")
568574
all_params.append("vessel_imo")
575+
all_params.append("vintage_start_year")
576+
all_params.append("vintage_end_year")
569577

570578
for key, val in six.iteritems(local_var_params["kwargs"]):
571579
if key not in all_params:
@@ -748,6 +756,8 @@ def place_order_with_http_info(self, id, **kwargs): # noqa: E501
748756
all_params.append("origin_postal_code")
749757
all_params.append("truck_weight_t")
750758
all_params.append("vessel_imo")
759+
all_params.append("vintage_start_year")
760+
all_params.append("vintage_end_year")
751761

752762
for key, val in six.iteritems(local_var_params["kwargs"]):
753763
if key not in all_params:
@@ -937,6 +947,8 @@ def retrieve_order_with_http_info(self, id, **kwargs): # noqa: E501
937947
all_params.append("origin_postal_code")
938948
all_params.append("truck_weight_t")
939949
all_params.append("vessel_imo")
950+
all_params.append("vintage_start_year")
951+
all_params.append("vintage_end_year")
940952

941953
for key, val in six.iteritems(local_var_params["kwargs"]):
942954
if key not in all_params:
@@ -1129,6 +1141,8 @@ def retrieve_orders_with_http_info(self, **kwargs): # noqa: E501
11291141
all_params.append("origin_postal_code")
11301142
all_params.append("truck_weight_t")
11311143
all_params.append("vessel_imo")
1144+
all_params.append("vintage_start_year")
1145+
all_params.append("vintage_end_year")
11321146

11331147
for key, val in six.iteritems(local_var_params["kwargs"]):
11341148
if key not in all_params:

patch_api/api/projects_api.py

+6
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ class ProjectsApi(object):
7979
"origin_postal_code",
8080
"truck_weight_t",
8181
"vessel_imo",
82+
"vintage_start_year",
83+
"vintage_end_year",
8284
]
8385

8486
def __init__(self, api_client=None):
@@ -196,6 +198,8 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
196198
all_params.append("origin_postal_code")
197199
all_params.append("truck_weight_t")
198200
all_params.append("vessel_imo")
201+
all_params.append("vintage_start_year")
202+
all_params.append("vintage_end_year")
199203

200204
for key, val in six.iteritems(local_var_params["kwargs"]):
201205
if key not in all_params:
@@ -395,6 +399,8 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
395399
all_params.append("origin_postal_code")
396400
all_params.append("truck_weight_t")
397401
all_params.append("vessel_imo")
402+
all_params.append("vintage_start_year")
403+
all_params.append("vintage_end_year")
398404

399405
for key, val in six.iteritems(local_var_params["kwargs"]):
400406
if key not in all_params:

patch_api/api/technology_types_api.py

+4
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ class TechnologyTypesApi(object):
7979
"origin_postal_code",
8080
"truck_weight_t",
8181
"vessel_imo",
82+
"vintage_start_year",
83+
"vintage_end_year",
8284
]
8385

8486
def __init__(self, api_client=None):
@@ -192,6 +194,8 @@ def retrieve_technology_types_with_http_info(self, **kwargs): # noqa: E501
192194
all_params.append("origin_postal_code")
193195
all_params.append("truck_weight_t")
194196
all_params.append("vessel_imo")
197+
all_params.append("vintage_start_year")
198+
all_params.append("vintage_end_year")
195199

196200
for key, val in six.iteritems(local_var_params["kwargs"]):
197201
if key not in all_params:

patch_api/api_client.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = "patch-python/2.0.0"
95+
self.user_agent = "patch-python/2.1.0"
9696
# Set default Patch-Version
9797
self.patch_version = 2
9898

@@ -163,7 +163,6 @@ def __call_api(
163163
_request_timeout=None,
164164
_host=None,
165165
):
166-
167166
config = self.configuration
168167

169168
# header parameters

patch_api/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def to_debug_report(self):
341341
"OS: {env}\n"
342342
"Python Version: {pyversion}\n"
343343
"Version of the API: 2\n"
344-
"SDK Package Version: 2.0.0".format(env=sys.platform, pyversion=sys.version)
344+
"SDK Package Version: 2.1.0".format(env=sys.platform, pyversion=sys.version)
345345
)
346346

347347
def get_host_settings(self):

patch_api/models/create_mass_estimate_request.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ def mass_g(self, mass_g):
9090
if (
9191
self.local_vars_configuration.client_side_validation
9292
and mass_g is not None
93-
and mass_g > 100000000000
93+
and mass_g > 100000000000000
9494
): # noqa: E501
9595
raise ValueError(
96-
"Invalid value for `mass_g`, must be a value less than or equal to `100000000000`"
96+
"Invalid value for `mass_g`, must be a value less than or equal to `100000000000000`"
9797
) # noqa: E501
9898
if (
9999
self.local_vars_configuration.client_side_validation

0 commit comments

Comments
 (0)