PR: [62](https://github.com/alphagov/digitalmarketplace-apiclient/pull/62)
What changed
Removed `import_supplier` and `import_service` methods.
These routes have been around since G6, when we were importing a bunch of complete suppliers and their related services. As they were all production-ready (they already had IDs and everything) we just needed a way to create a new object from a JSON blob.
New services created through the app must start out as drafts, and for both services and suppliers IDs are assigned at creation time. This is what we are doing now and will continue doing going forward.
Technically this a breaking change because we are removing functionality, but IRL there were only two scripts using them and those are being deleted.
Example app change
Old
python
import suppler
api_client.import_supplier(1, {"supplier": "data"})
import service
api_client.import_service(1, {"service": "data"}, "paulpaul.paul")
New
You can't do this any more.