Skip to content

Commit

Permalink
SDK regeneration (#191)
Browse files Browse the repository at this point in the history
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
  • Loading branch information
fern-api[bot] authored Sep 12, 2024
1 parent e25effe commit 99baacd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/sayari/project/types/project_entities_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class ProjectEntitiesFilter(UniversalBaseModel):
Filter by a geographical bounding box. The value is a pipe-delimited set of four values representing the top, left, bottom, and right sides of the bounding box, in that order. The pipes should be URL-encoded as `%7C`. The top coordinate must greater than the bottom coordinate, and the left coordinate must be less than the right coordinate. A sample is `55.680357237879136|-71.53607290158526|41.10876347746233|-40.963927098414736`
"""

custom_field_name: typing.Optional[typing.List[str]] = pydantic.Field(alias="custom_<field name>", default=None)
custom_field_name: typing.Optional[typing.List[str]] = pydantic.Field(alias="custom_{field name}", default=None)
"""
<Warning>This property is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> custom user key/value pairs (key must be prefixed with "custom\_" and value must be "string" type)
"""
Expand Down
4 changes: 2 additions & 2 deletions src/sayari/project/types/sort_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"-latest_status",
"label",
"-label",
"custom_<field name>",
"-custom_<field name>",
"custom_{field name}",
"-custom_{field name}",
"receiver_of",
"-receiver_of",
"shipper_of",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class ResolutionPersistedResponseFields(ResolutionResponseFields):
custom_field_name: typing.Optional[str] = pydantic.Field(alias="custom_<field name>", default=None)
custom_field_name: typing.Optional[str] = pydantic.Field(alias="custom_{field name}", default=None)
"""
<Warning>This property is in beta and is subject to change. It is provided for early access and testing purposes only.</Warning> custom user key/value pairs (key must be prefixed with "custom\_" and value must be "string" type)
"""
Expand Down

0 comments on commit 99baacd

Please sign in to comment.