@volant-autonomy/via-sdk 1.3926.1 → 1.3934.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/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/volant-schema.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -1666,6 +1666,11 @@ export interface components {
|
|
|
1666
1666
|
type: "FeatureCollection";
|
|
1667
1667
|
/** Features */
|
|
1668
1668
|
features: components["schemas"]["GeoJsonPolygonFeature_GeocageProperties_"][];
|
|
1669
|
+
/**
|
|
1670
|
+
* Geocage name
|
|
1671
|
+
* @description User set name for a Geocage, it can have a maximum of 255 characters, as well as contain symbols and spacing
|
|
1672
|
+
*/
|
|
1673
|
+
viaName?: string | null;
|
|
1669
1674
|
};
|
|
1670
1675
|
/**
|
|
1671
1676
|
* Geocage
|
|
@@ -1680,6 +1685,11 @@ export interface components {
|
|
|
1680
1685
|
type: "FeatureCollection";
|
|
1681
1686
|
/** Features */
|
|
1682
1687
|
features: components["schemas"]["GeoJsonPolygonFeature_GeocageProperties_"][];
|
|
1688
|
+
/**
|
|
1689
|
+
* Geocage name
|
|
1690
|
+
* @description User set name for a Geocage, it can have a maximum of 255 characters, as well as contain symbols and spacing
|
|
1691
|
+
*/
|
|
1692
|
+
viaName?: string | null;
|
|
1683
1693
|
};
|
|
1684
1694
|
/** GeocageProperties */
|
|
1685
1695
|
GeocageProperties: Record<string, never>;
|