Skip to content

Commit 2011c77

Browse files
author
Rahul Mody
authored
Rm/1.21.0 (#59)
* 1.21.0 - api completeness changes * additional change log info * additional deprecations * update readme
1 parent 546de22 commit 2011c77

19 files changed

+1274
-24
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ 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+
## [1.21.0] - 2022-05-03
9+
10+
### Added
11+
12+
- Adds optional `total_price` and `currency` field to `order` creation
13+
- Adds optional `amount` and `unit` field to `order` creation
14+
- Adds inventory to `project` responses
15+
- Adds inventory to `order` responses
16+
17+
### Changed
18+
19+
- Deprecates `mass_g` and `total_price_cents_usd` fields for create `order` requests
20+
- Deprecates `average_price_per_tonne_cents_usd` and `remaining_mass_g` from `project` responses
21+
- Deprecates `price_cents_usd`, `patch_fee_cents_usd`, and `mass_g` from `order` responses
22+
823
## [1.20.0] - 2022-04-18
924

1025
### Added

README.md

+11-8
Original file line numberDiff line numberDiff line change
@@ -65,22 +65,25 @@ import patch_api
6565
patch = patch_api.ApiClient(api_key=os.environ.get('SANDBOX_API_KEY'))
6666

6767
# Create an order - you can create an order
68-
# providing either mass_g or total_price_cents_usd, but not both
68+
# providing either amount (and unit) or total_price (and currency), but not both
6969

70-
# Create order with mass
71-
patch.orders.create_order(mass_g=1_000_000) # Pass in the mass in grams (i.e. 1 metric tonne)
70+
# Create order with amount
71+
amount = 1_000_000 # Pass in the amount in unit specified
72+
unit = "g"
73+
patch.orders.create_order(amount=amount, unit=unit)
7274

73-
# Create an order with maximum total price
74-
total_price_cents_usd = 5_00 # Pass in the total price in cents (i.e. 5 dollars)
75-
patch.orders.create_order(total_price_cents_usd=total_price_cents_usd)
75+
# Create an order with total price
76+
total_price = 5_00 # Pass in the total price in smallest currency unit (ie cents for USD).
77+
currency = "USD"
78+
patch.orders.create_order(total_price=total_price, currency=currency)
7679

7780
## You can also specify a project-id field (optional) to be used instead of the preferred one
7881
project_id = 'pro_test_1234' # Pass in the project's ID
79-
patch.orders.create_order(project_id=project_id, mass_g=mass_g)
82+
patch.orders.create_order(project_id=project_id, amount=amount, unit=unit)
8083

8184
## Orders also accept a metadata field (optional)
8285
metadata = {user: "john doe"}
83-
patch.orders.create_order(metadata=metadata, mass_g=mass_g)
86+
patch.orders.create_order(metadata=metadata, amount=amount, unit=unit)
8487

8588
# Retrieve an order
8689
order_id = 'ord_test_1234' # Pass in the order's id

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__ = "1.20.0"
18+
__version__ = "1.21.0"
1919

2020
# import ApiClient
2121
from patch_api.api_client import ApiClient

patch_api/api/estimates_api.py

+40
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ class EstimatesApi(object):
5959
"number_of_nights",
6060
"number_of_rooms",
6161
"vintage_year",
62+
"total_price",
63+
"currency",
64+
"amount",
65+
"unit",
6266
]
6367

6468
def __init__(self, api_client=None):
@@ -158,6 +162,10 @@ def create_bitcoin_estimate_with_http_info(
158162
all_params.append("number_of_nights")
159163
all_params.append("number_of_rooms")
160164
all_params.append("vintage_year")
165+
all_params.append("total_price")
166+
all_params.append("currency")
167+
all_params.append("amount")
168+
all_params.append("unit")
161169

162170
for key, val in six.iteritems(local_var_params["kwargs"]):
163171
if key not in all_params:
@@ -328,6 +336,10 @@ def create_ethereum_estimate_with_http_info(
328336
all_params.append("number_of_nights")
329337
all_params.append("number_of_rooms")
330338
all_params.append("vintage_year")
339+
all_params.append("total_price")
340+
all_params.append("currency")
341+
all_params.append("amount")
342+
all_params.append("unit")
331343

332344
for key, val in six.iteritems(local_var_params["kwargs"]):
333345
if key not in all_params:
@@ -498,6 +510,10 @@ def create_flight_estimate_with_http_info(
498510
all_params.append("number_of_nights")
499511
all_params.append("number_of_rooms")
500512
all_params.append("vintage_year")
513+
all_params.append("total_price")
514+
all_params.append("currency")
515+
all_params.append("amount")
516+
all_params.append("unit")
501517

502518
for key, val in six.iteritems(local_var_params["kwargs"]):
503519
if key not in all_params:
@@ -668,6 +684,10 @@ def create_hotel_estimate_with_http_info(
668684
all_params.append("number_of_nights")
669685
all_params.append("number_of_rooms")
670686
all_params.append("vintage_year")
687+
all_params.append("total_price")
688+
all_params.append("currency")
689+
all_params.append("amount")
690+
all_params.append("unit")
671691

672692
for key, val in six.iteritems(local_var_params["kwargs"]):
673693
if key not in all_params:
@@ -838,6 +858,10 @@ def create_mass_estimate_with_http_info(
838858
all_params.append("number_of_nights")
839859
all_params.append("number_of_rooms")
840860
all_params.append("vintage_year")
861+
all_params.append("total_price")
862+
all_params.append("currency")
863+
all_params.append("amount")
864+
all_params.append("unit")
841865

842866
for key, val in six.iteritems(local_var_params["kwargs"]):
843867
if key not in all_params:
@@ -1008,6 +1032,10 @@ def create_shipping_estimate_with_http_info(
10081032
all_params.append("number_of_nights")
10091033
all_params.append("number_of_rooms")
10101034
all_params.append("vintage_year")
1035+
all_params.append("total_price")
1036+
all_params.append("currency")
1037+
all_params.append("amount")
1038+
all_params.append("unit")
10111039

10121040
for key, val in six.iteritems(local_var_params["kwargs"]):
10131041
if key not in all_params:
@@ -1178,6 +1206,10 @@ def create_vehicle_estimate_with_http_info(
11781206
all_params.append("number_of_nights")
11791207
all_params.append("number_of_rooms")
11801208
all_params.append("vintage_year")
1209+
all_params.append("total_price")
1210+
all_params.append("currency")
1211+
all_params.append("amount")
1212+
all_params.append("unit")
11811213

11821214
for key, val in six.iteritems(local_var_params["kwargs"]):
11831215
if key not in all_params:
@@ -1342,6 +1374,10 @@ def retrieve_estimate_with_http_info(self, id, **kwargs): # noqa: E501
13421374
all_params.append("number_of_nights")
13431375
all_params.append("number_of_rooms")
13441376
all_params.append("vintage_year")
1377+
all_params.append("total_price")
1378+
all_params.append("currency")
1379+
all_params.append("amount")
1380+
all_params.append("unit")
13451381

13461382
for key, val in six.iteritems(local_var_params["kwargs"]):
13471383
if key not in all_params:
@@ -1496,6 +1532,10 @@ def retrieve_estimates_with_http_info(self, **kwargs): # noqa: E501
14961532
all_params.append("number_of_nights")
14971533
all_params.append("number_of_rooms")
14981534
all_params.append("vintage_year")
1535+
all_params.append("total_price")
1536+
all_params.append("currency")
1537+
all_params.append("amount")
1538+
all_params.append("unit")
14991539

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

patch_api/api/orders_api.py

+24
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ class OrdersApi(object):
5959
"number_of_nights",
6060
"number_of_rooms",
6161
"vintage_year",
62+
"total_price",
63+
"currency",
64+
"amount",
65+
"unit",
6266
]
6367

6468
def __init__(self, api_client=None):
@@ -152,6 +156,10 @@ def cancel_order_with_http_info(self, id, **kwargs): # noqa: E501
152156
all_params.append("number_of_nights")
153157
all_params.append("number_of_rooms")
154158
all_params.append("vintage_year")
159+
all_params.append("total_price")
160+
all_params.append("currency")
161+
all_params.append("amount")
162+
all_params.append("unit")
155163

156164
for key, val in six.iteritems(local_var_params["kwargs"]):
157165
if key not in all_params:
@@ -308,6 +316,10 @@ def create_order_with_http_info(self, create_order_request, **kwargs): # noqa:
308316
all_params.append("number_of_nights")
309317
all_params.append("number_of_rooms")
310318
all_params.append("vintage_year")
319+
all_params.append("total_price")
320+
all_params.append("currency")
321+
all_params.append("amount")
322+
all_params.append("unit")
311323

312324
for key, val in six.iteritems(local_var_params["kwargs"]):
313325
if key not in all_params:
@@ -472,6 +484,10 @@ def place_order_with_http_info(self, id, **kwargs): # noqa: E501
472484
all_params.append("number_of_nights")
473485
all_params.append("number_of_rooms")
474486
all_params.append("vintage_year")
487+
all_params.append("total_price")
488+
all_params.append("currency")
489+
all_params.append("amount")
490+
all_params.append("unit")
475491

476492
for key, val in six.iteritems(local_var_params["kwargs"]):
477493
if key not in all_params:
@@ -626,6 +642,10 @@ def retrieve_order_with_http_info(self, id, **kwargs): # noqa: E501
626642
all_params.append("number_of_nights")
627643
all_params.append("number_of_rooms")
628644
all_params.append("vintage_year")
645+
all_params.append("total_price")
646+
all_params.append("currency")
647+
all_params.append("amount")
648+
all_params.append("unit")
629649

630650
for key, val in six.iteritems(local_var_params["kwargs"]):
631651
if key not in all_params:
@@ -791,6 +811,10 @@ def retrieve_orders_with_http_info(self, **kwargs): # noqa: E501
791811
all_params.append("number_of_nights")
792812
all_params.append("number_of_rooms")
793813
all_params.append("vintage_year")
814+
all_params.append("total_price")
815+
all_params.append("currency")
816+
all_params.append("amount")
817+
all_params.append("unit")
794818

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

patch_api/api/projects_api.py

+12
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ class ProjectsApi(object):
5959
"number_of_nights",
6060
"number_of_rooms",
6161
"vintage_year",
62+
"total_price",
63+
"currency",
64+
"amount",
65+
"unit",
6266
]
6367

6468
def __init__(self, api_client=None):
@@ -152,6 +156,10 @@ def retrieve_project_with_http_info(self, id, **kwargs): # noqa: E501
152156
all_params.append("number_of_nights")
153157
all_params.append("number_of_rooms")
154158
all_params.append("vintage_year")
159+
all_params.append("total_price")
160+
all_params.append("currency")
161+
all_params.append("amount")
162+
all_params.append("unit")
155163

156164
for key, val in six.iteritems(local_var_params["kwargs"]):
157165
if key not in all_params:
@@ -312,6 +320,10 @@ def retrieve_projects_with_http_info(self, **kwargs): # noqa: E501
312320
all_params.append("number_of_nights")
313321
all_params.append("number_of_rooms")
314322
all_params.append("vintage_year")
323+
all_params.append("total_price")
324+
all_params.append("currency")
325+
all_params.append("amount")
326+
all_params.append("unit")
315327

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

patch_api/api/technology_types_api.py

+8
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ class TechnologyTypesApi(object):
5959
"number_of_nights",
6060
"number_of_rooms",
6161
"vintage_year",
62+
"total_price",
63+
"currency",
64+
"amount",
65+
"unit",
6266
]
6367

6468
def __init__(self, api_client=None):
@@ -150,6 +154,10 @@ def retrieve_technology_types_with_http_info(self, **kwargs): # noqa: E501
150154
all_params.append("number_of_nights")
151155
all_params.append("number_of_rooms")
152156
all_params.append("vintage_year")
157+
all_params.append("total_price")
158+
all_params.append("currency")
159+
all_params.append("amount")
160+
all_params.append("unit")
153161

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

patch_api/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = "patch-python/1.20.0"
94+
self.user_agent = "patch-python/1.21.0"
9595

9696
def __del__(self):
9797
if self._pool:

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: v1\n"
344-
"SDK Package Version: 1.20.0".format(
344+
"SDK Package Version: 1.21.0".format(
345345
env=sys.platform, pyversion=sys.version
346346
)
347347
)

patch_api/models/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,11 @@
3838
from patch_api.models.estimate_list_response import EstimateListResponse
3939
from patch_api.models.estimate_response import EstimateResponse
4040
from patch_api.models.highlight import Highlight
41+
from patch_api.models.inventory import Inventory
4142
from patch_api.models.meta_index_object import MetaIndexObject
4243
from patch_api.models.order import Order
44+
from patch_api.models.order_inventory import OrderInventory
45+
from patch_api.models.order_inventory_project import OrderInventoryProject
4346
from patch_api.models.order_list_response import OrderListResponse
4447
from patch_api.models.order_response import OrderResponse
4548
from patch_api.models.parent_technology_type import ParentTechnologyType

0 commit comments

Comments
 (0)