@volant-autonomy/via-sdk 1.3485.1 → 1.3512.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 +8 -0
- package/package.json +1 -1
package/dist/volant-schema.d.ts
CHANGED
|
@@ -2092,6 +2092,14 @@ export interface components {
|
|
|
2092
2092
|
* @description Human readable error description
|
|
2093
2093
|
*/
|
|
2094
2094
|
error_message?: string | null;
|
|
2095
|
+
/**
|
|
2096
|
+
* Error Checkpoint Indexes
|
|
2097
|
+
* @description Indexes of checkpoints that caused the error from the Pathing Task
|
|
2098
|
+
*/
|
|
2099
|
+
error_checkpoint_indexes?: [
|
|
2100
|
+
number,
|
|
2101
|
+
number
|
|
2102
|
+
] | null;
|
|
2095
2103
|
/**
|
|
2096
2104
|
* Checkpoint Indexes
|
|
2097
2105
|
* @description Indexes of checkpoints from initial request in returned waypoints, only provided if the pathing task is "successful".
|