File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 22
33## UNRELEASED
44
5+ ## v1.1.4 (2024-02-01)
6+
7+ ### Fixed
8+
9+ Fixed issue creating an Edge dataset without product attribute specified, but specifying the product in the ` RPApi ` object:
10+
11+ ``` python
12+ from ravenpackapi import RPApi, Dataset
13+
14+ api = RPApi(api_key = " YOUR_API_KEY" , product = " edge" )
15+
16+ ds = api.create_dataset(
17+ Dataset(
18+ name = " New Dataset" ,
19+ filters = {" entity_relevance" : {" $gte" : 90 }},
20+ )
21+ )
22+ ```
23+
24+ Since the product is not specified in ` Dataset ` 's ` __init__ ` , the incorrect
25+ product was being passed to the API, resulting in the message.
26+
27+ > Field 'product' must be 'edge'
28+
529## v1.1.3 (2023-12-06)
630
731### Fixed
Original file line number Diff line number Diff line change 1- __version__ = "1.1.3 "
1+ __version__ = "1.1.4 "
You can’t perform that action at this time.
0 commit comments