@veeroute/lss-routing-angular 7.1.2439 → 7.3.2463

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.
Files changed (71) hide show
  1. package/README.md +1 -1
  2. package/api/matrixServiceInterface.d.ts +1 -1
  3. package/api/routeServiceInterface.d.ts +1 -1
  4. package/api/systemServiceInterface.d.ts +1 -1
  5. package/esm2022/api/matrixService.mjs +5 -5
  6. package/esm2022/api/matrixServiceInterface.mjs +1 -1
  7. package/esm2022/api/routeService.mjs +5 -5
  8. package/esm2022/api/routeServiceInterface.mjs +1 -1
  9. package/esm2022/api/systemService.mjs +5 -5
  10. package/esm2022/api/systemServiceInterface.mjs +1 -1
  11. package/esm2022/api.module.mjs +4 -4
  12. package/esm2022/model/checkResult.mjs +2 -2
  13. package/esm2022/model/general400.mjs +1 -1
  14. package/esm2022/model/general402.mjs +1 -1
  15. package/esm2022/model/general404.mjs +1 -1
  16. package/esm2022/model/general404Detail.mjs +1 -1
  17. package/esm2022/model/general429.mjs +1 -1
  18. package/esm2022/model/general500.mjs +1 -1
  19. package/esm2022/model/geoSettings.mjs +2 -2
  20. package/esm2022/model/geopoint.mjs +2 -2
  21. package/esm2022/model/matrixResult.mjs +1 -1
  22. package/esm2022/model/matrixTask.mjs +1 -1
  23. package/esm2022/model/models.mjs +4 -3
  24. package/esm2022/model/route.mjs +1 -1
  25. package/esm2022/model/routeLeg.mjs +1 -1
  26. package/esm2022/model/routeResult.mjs +1 -1
  27. package/esm2022/model/routeStatistics.mjs +1 -1
  28. package/esm2022/model/routeStep.mjs +1 -1
  29. package/esm2022/model/routeTask.mjs +1 -1
  30. package/esm2022/model/routeWaypoint.mjs +2 -0
  31. package/esm2022/model/routingMatrix.mjs +1 -1
  32. package/esm2022/model/routingMatrixWaypoint.mjs +2 -0
  33. package/esm2022/model/service.mjs +2 -2
  34. package/esm2022/model/timeWindow.mjs +2 -2
  35. package/esm2022/model/tracedata.mjs +1 -1
  36. package/esm2022/model/trackpoint.mjs +11 -0
  37. package/esm2022/model/transportType.mjs +2 -2
  38. package/esm2022/model/versionResult.mjs +2 -2
  39. package/fesm2022/veeroute-lss-routing-angular.mjs +33 -23
  40. package/fesm2022/veeroute-lss-routing-angular.mjs.map +1 -1
  41. package/model/checkResult.d.ts +1 -1
  42. package/model/general400.d.ts +1 -1
  43. package/model/general402.d.ts +1 -1
  44. package/model/general404.d.ts +1 -1
  45. package/model/general404Detail.d.ts +1 -1
  46. package/model/general429.d.ts +1 -1
  47. package/model/general500.d.ts +1 -1
  48. package/model/geoSettings.d.ts +1 -1
  49. package/model/geopoint.d.ts +1 -1
  50. package/model/matrixResult.d.ts +1 -1
  51. package/model/matrixTask.d.ts +3 -3
  52. package/model/models.d.ts +3 -2
  53. package/model/route.d.ts +2 -2
  54. package/model/routeLeg.d.ts +9 -1
  55. package/model/routeResult.d.ts +1 -1
  56. package/model/routeStatistics.d.ts +2 -2
  57. package/model/routeStep.d.ts +6 -3
  58. package/model/routeTask.d.ts +7 -3
  59. package/model/{waypoint.d.ts → routeWaypoint.d.ts} +6 -6
  60. package/model/routingMatrix.d.ts +4 -4
  61. package/model/routingMatrixWaypoint.d.ts +20 -0
  62. package/model/service.d.ts +1 -1
  63. package/model/timeWindow.d.ts +1 -1
  64. package/model/tracedata.d.ts +1 -1
  65. package/model/trackpoint.d.ts +26 -0
  66. package/model/transportType.d.ts +1 -1
  67. package/model/versionResult.d.ts +1 -1
  68. package/package.json +1 -1
  69. package/esm2022/model/routePolyline.mjs +0 -2
  70. package/esm2022/model/waypoint.mjs +0 -2
  71. package/model/routePolyline.d.ts +0 -19
@@ -1,14 +1,14 @@
1
1
  /**
2
2
  * VRt.Routing [RT]
3
3
  *
4
- * The version of the OpenAPI document: 7.1.2439
4
+ * The version of the OpenAPI document: 7.3.2463
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
8
8
  * Do not edit the class manually.
9
9
  */
10
10
  import { GeoSettingsRouting } from './geoSettings';
11
- import { WaypointRouting } from './waypoint';
11
+ import { RouteWaypointRouting } from './routeWaypoint';
12
12
  import { TransportTypeRouting } from './transportType';
13
13
  /**
14
14
  * Task for route planning. The departure time considers traffic jams.
@@ -17,7 +17,7 @@ export interface RouteTaskRouting {
17
17
  /**
18
18
  * Array of geographical points to build path between them.
19
19
  */
20
- waypoints: Array<WaypointRouting>;
20
+ waypoints: Array<RouteWaypointRouting>;
21
21
  transport_type?: TransportTypeRouting;
22
22
  geo_settings?: GeoSettingsRouting;
23
23
  /**
@@ -40,6 +40,10 @@ export interface RouteTaskRouting {
40
40
  * Generate a polyline between points.
41
41
  */
42
42
  polyline?: boolean;
43
+ /**
44
+ * Generate times at intermediate points along the track.
45
+ */
46
+ trackpoint_time?: boolean;
43
47
  /**
44
48
  * The name of the dataset. A technical field that does not affect calculation.
45
49
  */
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RT]
3
3
  *
4
- * The version of the OpenAPI document: 7.1.2439
4
+ * The version of the OpenAPI document: 7.3.2463
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -9,16 +9,16 @@
9
9
  */
10
10
  import { GeopointRouting } from './geopoint';
11
11
  /**
12
- * Waypoint.
12
+ * A waypoint with the time of the stop at it.
13
13
  */
14
- export interface WaypointRouting {
14
+ export interface RouteWaypointRouting {
15
+ geopoint: GeopointRouting;
15
16
  /**
16
- * Name of the point.
17
+ * Name of the point. Can be used as an identifier to match the task and the calculation result.
17
18
  */
18
19
  name?: string | null;
19
- geopoint: GeopointRouting;
20
20
  /**
21
21
  * Time duration according to [ISO 8601 duration](https://en.wikipedia.org/wiki/ISO_8601#Durations).
22
22
  */
23
- duration?: string;
23
+ duration?: string | null;
24
24
  }
@@ -1,21 +1,21 @@
1
1
  /**
2
2
  * VRt.Routing [RT]
3
3
  *
4
- * The version of the OpenAPI document: 7.1.2439
4
+ * The version of the OpenAPI document: 7.3.2463
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
8
8
  * Do not edit the class manually.
9
9
  */
10
- import { WaypointRouting } from './waypoint';
10
+ import { RoutingMatrixWaypointRouting } from './routingMatrixWaypoint';
11
11
  /**
12
- * Time and distance matrix.
12
+ * Routing matrix. Contains durations and distances between points.
13
13
  */
14
14
  export interface RoutingMatrixRouting {
15
15
  /**
16
16
  * Array of geographical points with distances and times calculated between them.
17
17
  */
18
- waypoints: Array<WaypointRouting>;
18
+ waypoints: Array<RoutingMatrixWaypointRouting>;
19
19
  /**
20
20
  * Routes length between two neighbors locations, in meters. The values in the array are ordered according to the elements order in the `waypoints` parameter. Each matrix row is an array of distances from the desired point to every other point.
21
21
  */
@@ -0,0 +1,20 @@
1
+ /**
2
+ * VRt.Routing [RT]
3
+ *
4
+ * The version of the OpenAPI document: 7.3.2463
5
+ * Contact: servicedesk@veeroute.com
6
+ *
7
+ * NOTE: This class is auto generated by OpenAPI Generator.
8
+ * Do not edit the class manually.
9
+ */
10
+ import { GeopointRouting } from './geopoint';
11
+ /**
12
+ * Routing matrix waypoint.
13
+ */
14
+ export interface RoutingMatrixWaypointRouting {
15
+ geopoint: GeopointRouting;
16
+ /**
17
+ * Name of the point. Can be used as an identifier to match the task and the calculation result.
18
+ */
19
+ name?: string | null;
20
+ }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RT]
3
3
  *
4
- * The version of the OpenAPI document: 7.1.2439
4
+ * The version of the OpenAPI document: 7.3.2463
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RT]
3
3
  *
4
- * The version of the OpenAPI document: 7.1.2439
4
+ * The version of the OpenAPI document: 7.3.2463
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RT]
3
3
  *
4
- * The version of the OpenAPI document: 7.1.2439
4
+ * The version of the OpenAPI document: 7.3.2463
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -0,0 +1,26 @@
1
+ /**
2
+ * VRt.Routing [RT]
3
+ *
4
+ * The version of the OpenAPI document: 7.3.2463
5
+ * Contact: servicedesk@veeroute.com
6
+ *
7
+ * NOTE: This class is auto generated by OpenAPI Generator.
8
+ * Do not edit the class manually.
9
+ */
10
+ /**
11
+ * A geographic point with a time reference.
12
+ */
13
+ export interface TrackpointRouting {
14
+ /**
15
+ * Latitude in degrees.
16
+ */
17
+ latitude: number;
18
+ /**
19
+ * Longitude in degrees.
20
+ */
21
+ longitude: number;
22
+ /**
23
+ * Date and time in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format.
24
+ */
25
+ time?: string | null;
26
+ }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RT]
3
3
  *
4
- * The version of the OpenAPI document: 7.1.2439
4
+ * The version of the OpenAPI document: 7.3.2463
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RT]
3
3
  *
4
- * The version of the OpenAPI document: 7.1.2439
4
+ * The version of the OpenAPI document: 7.3.2463
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veeroute/lss-routing-angular",
3
- "version": "7.1.2439",
3
+ "version": "7.3.2463",
4
4
  "description": "OpenAPI client for @veeroute/lss-routing-angular",
5
5
  "author": "Veeroute Team",
6
6
  "keywords": [
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm91dGVQb2x5bGluZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL21vZGVsL3JvdXRlUG9seWxpbmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogVlJ0LlJvdXRpbmcgW1JUXVxuICpcbiAqIFRoZSB2ZXJzaW9uIG9mIHRoZSBPcGVuQVBJIGRvY3VtZW50OiA3LjEuMjQzOVxuICogQ29udGFjdDogc2VydmljZWRlc2tAdmVlcm91dGUuY29tXG4gKlxuICogTk9URTogVGhpcyBjbGFzcyBpcyBhdXRvIGdlbmVyYXRlZCBieSBPcGVuQVBJIEdlbmVyYXRvci5cbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuaW1wb3J0IHsgV2F5cG9pbnRSb3V0aW5nIH0gZnJvbSAnLi93YXlwb2ludCc7XG5cblxuLyoqXG4gKiBSb3V0ZSBiZXR3ZWVuIGxvY2F0aW9ucywgcmVwcmVzZW50ZWQgYXMgYSBwb2x5bGluZS5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBSb3V0ZVBvbHlsaW5lUm91dGluZyB7IFxuICAgIC8qKlxuICAgICAqIEFycmF5IG9mIGdlb2dyYXBoaWNhbCBwb2ludHMgZGVzY3JpYmluZyB0aGUgcm91dGUuXG4gICAgICovXG4gICAgcG9pbnRzOiBBcnJheTxXYXlwb2ludFJvdXRpbmc+O1xufVxuXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2F5cG9pbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC93YXlwb2ludC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUm91dGluZyBbUlRdXG4gKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIE9wZW5BUEkgZG9jdW1lbnQ6IDcuMS4yNDM5XG4gKiBDb250YWN0OiBzZXJ2aWNlZGVza0B2ZWVyb3V0ZS5jb21cbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yLlxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5pbXBvcnQgeyBHZW9wb2ludFJvdXRpbmcgfSBmcm9tICcuL2dlb3BvaW50JztcblxuXG4vKipcbiAqIFdheXBvaW50LiBcbiAqL1xuZXhwb3J0IGludGVyZmFjZSBXYXlwb2ludFJvdXRpbmcgeyBcbiAgICAvKipcbiAgICAgKiBOYW1lIG9mIHRoZSBwb2ludC5cbiAgICAgKi9cbiAgICBuYW1lPzogc3RyaW5nIHwgbnVsbDtcbiAgICBnZW9wb2ludDogR2VvcG9pbnRSb3V0aW5nO1xuICAgIC8qKlxuICAgICAqIFRpbWUgZHVyYXRpb24gYWNjb3JkaW5nIHRvIFtJU08gODYwMSBkdXJhdGlvbl0oaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzg2MDEjRHVyYXRpb25zKS5cbiAgICAgKi9cbiAgICBkdXJhdGlvbj86IHN0cmluZztcbn1cblxuIl19
@@ -1,19 +0,0 @@
1
- /**
2
- * VRt.Routing [RT]
3
- *
4
- * The version of the OpenAPI document: 7.1.2439
5
- * Contact: servicedesk@veeroute.com
6
- *
7
- * NOTE: This class is auto generated by OpenAPI Generator.
8
- * Do not edit the class manually.
9
- */
10
- import { WaypointRouting } from './waypoint';
11
- /**
12
- * Route between locations, represented as a polyline.
13
- */
14
- export interface RoutePolylineRouting {
15
- /**
16
- * Array of geographical points describing the route.
17
- */
18
- points: Array<WaypointRouting>;
19
- }