Skip to content

Commit

Permalink
Excavator: Upgrade API Version (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-excavator-bot authored Dec 19, 2024
1 parent 49311d9 commit bccf61e
Show file tree
Hide file tree
Showing 44 changed files with 1,175 additions and 2 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -994,9 +994,29 @@ Namespace | Resource | Operation | HTTP request |
- [VersionIdDict](docs/v2/models/VersionIdDict.md)
- [BBox](docs/v2/models/BBox.md)
- [Coordinate](docs/v2/models/Coordinate.md)
- [Feature](docs/v2/models/Feature.md)
- [FeatureCollection](docs/v2/models/FeatureCollection.md)
- [FeatureCollectionDict](docs/v2/models/FeatureCollectionDict.md)
- [FeatureCollectionTypes](docs/v2/models/FeatureCollectionTypes.md)
- [FeatureCollectionTypesDict](docs/v2/models/FeatureCollectionTypesDict.md)
- [FeatureDict](docs/v2/models/FeatureDict.md)
- [FeaturePropertyKey](docs/v2/models/FeaturePropertyKey.md)
- [Geometry](docs/v2/models/Geometry.md)
- [GeometryCollection](docs/v2/models/GeometryCollection.md)
- [GeometryCollectionDict](docs/v2/models/GeometryCollectionDict.md)
- [GeometryDict](docs/v2/models/GeometryDict.md)
- [GeoPoint](docs/v2/models/GeoPoint.md)
- [GeoPointDict](docs/v2/models/GeoPointDict.md)
- [LinearRing](docs/v2/models/LinearRing.md)
- [LineString](docs/v2/models/LineString.md)
- [LineStringCoordinates](docs/v2/models/LineStringCoordinates.md)
- [LineStringDict](docs/v2/models/LineStringDict.md)
- [MultiLineString](docs/v2/models/MultiLineString.md)
- [MultiLineStringDict](docs/v2/models/MultiLineStringDict.md)
- [MultiPoint](docs/v2/models/MultiPoint.md)
- [MultiPointDict](docs/v2/models/MultiPointDict.md)
- [MultiPolygon](docs/v2/models/MultiPolygon.md)
- [MultiPolygonDict](docs/v2/models/MultiPolygonDict.md)
- [Polygon](docs/v2/models/Polygon.md)
- [PolygonDict](docs/v2/models/PolygonDict.md)
- [Position](docs/v2/models/Position.md)
Expand Down
15 changes: 15 additions & 0 deletions docs/v2/geo/models/Feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Feature

GeoJSon 'Feature' object

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**geometry** | Optional[Geometry] | No | |
**properties** | Dict[FeaturePropertyKey, Any] | Yes | A `Feature` object has a member with the name "properties". The value of the properties member is an object (any JSON object or a JSON null value). |
**id** | Optional[Any] | No | If a `Feature` has a commonly used identifier, that identifier SHOULD be included as a member of the Feature object with the name "id", and the value of this member is either a JSON string or number. |
**bbox** | Optional[BBox] | No | |
**type** | Literal["Feature"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
13 changes: 13 additions & 0 deletions docs/v2/geo/models/FeatureCollection.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# FeatureCollection

GeoJSon 'FeatureCollection' object

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**features** | List[FeatureCollectionTypes] | Yes | |
**bbox** | Optional[BBox] | No | |
**type** | Literal["FeatureCollection"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
13 changes: 13 additions & 0 deletions docs/v2/geo/models/FeatureCollectionDict.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# FeatureCollectionDict

GeoJSon 'FeatureCollection' object

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**features** | List[FeatureCollectionTypesDict] | Yes | |
**bbox** | NotRequired[BBox] | No | |
**type** | Literal["FeatureCollection"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
11 changes: 11 additions & 0 deletions docs/v2/geo/models/FeatureCollectionTypes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# FeatureCollectionTypes

FeatureCollectionTypes

## Type
```python
Feature
```


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
11 changes: 11 additions & 0 deletions docs/v2/geo/models/FeatureCollectionTypesDict.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# FeatureCollectionTypesDict

FeatureCollectionTypes

## Type
```python
FeatureDict
```


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
15 changes: 15 additions & 0 deletions docs/v2/geo/models/FeatureDict.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# FeatureDict

GeoJSon 'Feature' object

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**geometry** | NotRequired[GeometryDict] | No | |
**properties** | Dict[FeaturePropertyKey, Any] | Yes | A `Feature` object has a member with the name "properties". The value of the properties member is an object (any JSON object or a JSON null value). |
**id** | NotRequired[Any] | No | If a `Feature` has a commonly used identifier, that identifier SHOULD be included as a member of the Feature object with the name "id", and the value of this member is either a JSON string or number. |
**bbox** | NotRequired[BBox] | No | |
**type** | Literal["Feature"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
11 changes: 11 additions & 0 deletions docs/v2/geo/models/FeaturePropertyKey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# FeaturePropertyKey

FeaturePropertyKey

## Type
```python
str
```


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
21 changes: 21 additions & 0 deletions docs/v2/geo/models/Geometry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Geometry

Abstract type for all GeoJSon object except Feature and FeatureCollection

This is a discriminator type and does not contain any fields. Instead, it is a union
of of the models listed below.

This discriminator class uses the `type` field to differentiate between classes.

| Class | Value
| ------------ | -------------
MultiPoint | MultiPoint
GeometryCollection | GeometryCollection
MultiLineString | MultiLineString
LineString | LineString
MultiPolygon | MultiPolygon
GeoPoint | Point
Polygon | Polygon


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
19 changes: 19 additions & 0 deletions docs/v2/geo/models/GeometryCollection.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# GeometryCollection

GeoJSon geometry collection

GeometryCollections composed of a single part or a number of parts of a
single type SHOULD be avoided when that single part or a single object
of multipart type (MultiPoint, MultiLineString, or MultiPolygon) could
be used instead.


## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**geometries** | List[Geometry] | Yes | |
**bbox** | Optional[BBox] | No | |
**type** | Literal["GeometryCollection"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
19 changes: 19 additions & 0 deletions docs/v2/geo/models/GeometryCollectionDict.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# GeometryCollectionDict

GeoJSon geometry collection

GeometryCollections composed of a single part or a number of parts of a
single type SHOULD be avoided when that single part or a single object
of multipart type (MultiPoint, MultiLineString, or MultiPolygon) could
be used instead.


## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**geometries** | List[GeometryDict] | Yes | |
**bbox** | NotRequired[BBox] | No | |
**type** | Literal["GeometryCollection"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
21 changes: 21 additions & 0 deletions docs/v2/geo/models/GeometryDict.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# GeometryDict

Abstract type for all GeoJSon object except Feature and FeatureCollection

This is a discriminator type and does not contain any fields. Instead, it is a union
of of the models listed below.

This discriminator class uses the `type` field to differentiate between classes.

| Class | Value
| ------------ | -------------
MultiPointDict | MultiPoint
GeometryCollectionDict | GeometryCollection
MultiLineStringDict | MultiLineString
LineStringDict | LineString
MultiPolygonDict | MultiPolygon
GeoPointDict | Point
PolygonDict | Polygon


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
13 changes: 13 additions & 0 deletions docs/v2/geo/models/LineString.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# LineString

LineString

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**coordinates** | Optional[LineStringCoordinates] | No | |
**bbox** | Optional[BBox] | No | |
**type** | Literal["LineString"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
12 changes: 12 additions & 0 deletions docs/v2/geo/models/LineStringCoordinates.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# LineStringCoordinates

GeoJSon fundamental geometry construct, array of two or more positions.


## Type
```python
Annotated[List[Position], Len(min_length=2)]
```


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
13 changes: 13 additions & 0 deletions docs/v2/geo/models/LineStringDict.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# LineStringDict

LineString

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**coordinates** | NotRequired[LineStringCoordinates] | No | |
**bbox** | NotRequired[BBox] | No | |
**type** | Literal["LineString"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
13 changes: 13 additions & 0 deletions docs/v2/geo/models/MultiLineString.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# MultiLineString

MultiLineString

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**coordinates** | List[LineStringCoordinates] | Yes | |
**bbox** | Optional[BBox] | No | |
**type** | Literal["MultiLineString"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
13 changes: 13 additions & 0 deletions docs/v2/geo/models/MultiLineStringDict.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# MultiLineStringDict

MultiLineString

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**coordinates** | List[LineStringCoordinates] | Yes | |
**bbox** | NotRequired[BBox] | No | |
**type** | Literal["MultiLineString"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
13 changes: 13 additions & 0 deletions docs/v2/geo/models/MultiPoint.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# MultiPoint

MultiPoint

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**coordinates** | List[Position] | Yes | |
**bbox** | Optional[BBox] | No | |
**type** | Literal["MultiPoint"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
13 changes: 13 additions & 0 deletions docs/v2/geo/models/MultiPointDict.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# MultiPointDict

MultiPoint

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**coordinates** | List[Position] | Yes | |
**bbox** | NotRequired[BBox] | No | |
**type** | Literal["MultiPoint"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
13 changes: 13 additions & 0 deletions docs/v2/geo/models/MultiPolygon.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# MultiPolygon

MultiPolygon

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**coordinates** | List[List[LinearRing]] | Yes | |
**bbox** | Optional[BBox] | No | |
**type** | Literal["MultiPolygon"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
13 changes: 13 additions & 0 deletions docs/v2/geo/models/MultiPolygonDict.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# MultiPolygonDict

MultiPolygon

## Properties
| Name | Type | Required | Description |
| ------------ | ------------- | ------------- | ------------- |
**coordinates** | List[List[LinearRing]] | Yes | |
**bbox** | NotRequired[BBox] | No | |
**type** | Literal["MultiPolygon"] | Yes | None |


[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
2 changes: 1 addition & 1 deletion foundry/_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# using the autorelease bot
__version__ = "0.0.0"

__openapi_document_version__ = "1.1025.0"
__openapi_document_version__ = "1.1026.0"
2 changes: 1 addition & 1 deletion foundry/v1/ontologies/errors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@
) # NOQA

__all__ = [
"MalformedPropertyFilters",
"InvalidAggregationRangeValue",
"MalformedPropertyFilters",
"ActionParameterInterfaceTypeNotFound",
"MarketplaceObjectMappingNotFound",
"InvalidDurationGroupByValue",
Expand Down
Loading

0 comments on commit bccf61e

Please sign in to comment.