@volant-autonomy/via-sdk 1.3556.1 → 1.3567.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/volant-schema.d.ts +10 -1
- package/package.json +1 -1
package/dist/volant-schema.d.ts
CHANGED
|
@@ -1799,7 +1799,7 @@ export interface components {
|
|
|
1799
1799
|
* Used to transform pixel coordinates (col, row) to spatial coordinates (x, y) as:
|
|
1800
1800
|
* x = a * col + b * row + c
|
|
1801
1801
|
* y = d * col + e * row + f
|
|
1802
|
-
* Note that this transform is created assuming North-
|
|
1802
|
+
* Note that this transform is created assuming North-Up convention such that the cell (0,0) represents the NW cell of the raster with the y-coordinate decreasing with increasing y-index.
|
|
1803
1803
|
*
|
|
1804
1804
|
*/
|
|
1805
1805
|
affine_transform: number[];
|
|
@@ -6579,6 +6579,15 @@ export interface operations {
|
|
|
6579
6579
|
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
6580
6580
|
};
|
|
6581
6581
|
};
|
|
6582
|
+
/** @description Attempted request is forbidden */
|
|
6583
|
+
403: {
|
|
6584
|
+
headers: {
|
|
6585
|
+
[name: string]: unknown;
|
|
6586
|
+
};
|
|
6587
|
+
content: {
|
|
6588
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
6589
|
+
};
|
|
6590
|
+
};
|
|
6582
6591
|
/** @description Validation Error */
|
|
6583
6592
|
422: {
|
|
6584
6593
|
headers: {
|