@veeroute/lss-routing-angular 6.4.1962 → 6.6.2006

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 (86) hide show
  1. package/README.md +1 -1
  2. package/api/matrixService.d.ts +1 -1
  3. package/api/matrixServiceInterface.d.ts +1 -1
  4. package/api/routeService.d.ts +1 -1
  5. package/api/routeServiceInterface.d.ts +1 -1
  6. package/api/systemService.d.ts +1 -1
  7. package/api/systemServiceInterface.d.ts +1 -1
  8. package/configuration.d.ts +24 -0
  9. package/esm2020/api/matrixService.mjs +9 -3
  10. package/esm2020/api/matrixServiceInterface.mjs +1 -1
  11. package/esm2020/api/routeService.mjs +9 -3
  12. package/esm2020/api/routeServiceInterface.mjs +1 -1
  13. package/esm2020/api/systemService.mjs +12 -5
  14. package/esm2020/api/systemServiceInterface.mjs +1 -1
  15. package/esm2020/api.module.mjs +1 -1
  16. package/esm2020/configuration.mjs +20 -1
  17. package/esm2020/index.mjs +2 -1
  18. package/esm2020/model/checkResult.mjs +2 -2
  19. package/esm2020/model/general400.mjs +2 -0
  20. package/esm2020/model/general401.mjs +2 -0
  21. package/esm2020/model/general402.mjs +2 -0
  22. package/esm2020/model/general404.mjs +2 -0
  23. package/esm2020/model/general404Detail.mjs +2 -0
  24. package/esm2020/model/general429.mjs +2 -0
  25. package/esm2020/model/general500.mjs +2 -0
  26. package/esm2020/model/geoSettings.mjs +2 -2
  27. package/esm2020/model/geopoint.mjs +2 -2
  28. package/esm2020/model/matrixResult.mjs +1 -1
  29. package/esm2020/model/matrixTask.mjs +1 -1
  30. package/esm2020/model/models.mjs +8 -8
  31. package/esm2020/model/route.mjs +1 -1
  32. package/esm2020/model/routeLeg.mjs +1 -1
  33. package/esm2020/model/routePolyline.mjs +1 -1
  34. package/esm2020/model/routeResult.mjs +1 -1
  35. package/esm2020/model/routeStatistics.mjs +1 -1
  36. package/esm2020/model/routeStep.mjs +1 -1
  37. package/esm2020/model/routeTask.mjs +1 -1
  38. package/esm2020/model/routingMatrix.mjs +1 -1
  39. package/esm2020/model/serviceName.mjs +2 -3
  40. package/esm2020/model/timeWindow.mjs +2 -2
  41. package/esm2020/model/tracedata.mjs +1 -1
  42. package/esm2020/model/transportType.mjs +2 -3
  43. package/esm2020/model/versionResult.mjs +2 -2
  44. package/esm2020/model/waypoint.mjs +1 -1
  45. package/esm2020/param.mjs +2 -0
  46. package/fesm2015/veeroute-lss-routing-angular.mjs +48 -12
  47. package/fesm2015/veeroute-lss-routing-angular.mjs.map +1 -1
  48. package/fesm2020/veeroute-lss-routing-angular.mjs +53 -17
  49. package/fesm2020/veeroute-lss-routing-angular.mjs.map +1 -1
  50. package/index.d.ts +1 -0
  51. package/model/checkResult.d.ts +1 -1
  52. package/model/{inlineResponse400.d.ts → general400.d.ts} +3 -3
  53. package/model/{inlineResponse401.d.ts → general401.d.ts} +3 -3
  54. package/model/{inlineResponse402.d.ts → general402.d.ts} +3 -3
  55. package/model/{inlineResponse404.d.ts → general404.d.ts} +5 -5
  56. package/model/{inlineResponse404Detail.d.ts → general404Detail.d.ts} +2 -2
  57. package/model/{inlineResponse429.d.ts → general429.d.ts} +3 -3
  58. package/model/{inlineResponse500.d.ts → general500.d.ts} +3 -3
  59. package/model/geoSettings.d.ts +1 -1
  60. package/model/geopoint.d.ts +1 -1
  61. package/model/matrixResult.d.ts +1 -1
  62. package/model/matrixTask.d.ts +1 -1
  63. package/model/models.d.ts +7 -7
  64. package/model/route.d.ts +1 -1
  65. package/model/routeLeg.d.ts +1 -1
  66. package/model/routePolyline.d.ts +1 -1
  67. package/model/routeResult.d.ts +1 -1
  68. package/model/routeStatistics.d.ts +1 -1
  69. package/model/routeStep.d.ts +1 -1
  70. package/model/routeTask.d.ts +1 -1
  71. package/model/routingMatrix.d.ts +1 -1
  72. package/model/serviceName.d.ts +1 -1
  73. package/model/timeWindow.d.ts +1 -1
  74. package/model/tracedata.d.ts +1 -1
  75. package/model/transportType.d.ts +1 -1
  76. package/model/versionResult.d.ts +1 -1
  77. package/model/waypoint.d.ts +1 -1
  78. package/package.json +1 -1
  79. package/param.d.ts +37 -0
  80. package/esm2020/model/inlineResponse400.mjs +0 -2
  81. package/esm2020/model/inlineResponse401.mjs +0 -2
  82. package/esm2020/model/inlineResponse402.mjs +0 -2
  83. package/esm2020/model/inlineResponse404.mjs +0 -2
  84. package/esm2020/model/inlineResponse404Detail.mjs +0 -2
  85. package/esm2020/model/inlineResponse429.mjs +0 -2
  86. package/esm2020/model/inlineResponse500.mjs +0 -2
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -9,9 +9,9 @@
9
9
  */
10
10
  import { TracedataRouting } from './tracedata';
11
11
  /**
12
- * Error details.
12
+ * 402 Error details.
13
13
  */
14
- export interface InlineResponse402Routing {
14
+ export interface General402Routing {
15
15
  tracedata: TracedataRouting;
16
16
  /**
17
17
  * Error message.
@@ -1,20 +1,20 @@
1
1
  /**
2
2
  * VRt.Routing [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 { InlineResponse404DetailRouting } from './inlineResponse404Detail';
10
+ import { General404DetailRouting } from './general404Detail';
11
11
  /**
12
- * Error details.
12
+ * 404 Error details.
13
13
  */
14
- export interface InlineResponse404Routing {
14
+ export interface General404Routing {
15
15
  /**
16
16
  * Resource identifier.
17
17
  */
18
18
  resource_id?: string | null;
19
- detail?: InlineResponse404DetailRouting | null;
19
+ detail?: General404DetailRouting | null;
20
20
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -11,6 +11,6 @@ import { TracedataRouting } from './tracedata';
11
11
  /**
12
12
  * Resource details.
13
13
  */
14
- export interface InlineResponse404DetailRouting {
14
+ export interface General404DetailRouting {
15
15
  tracedata: TracedataRouting;
16
16
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -9,9 +9,9 @@
9
9
  */
10
10
  import { TracedataRouting } from './tracedata';
11
11
  /**
12
- * Error details.
12
+ * 429 Error details.
13
13
  */
14
- export interface InlineResponse429Routing {
14
+ export interface General429Routing {
15
15
  tracedata: TracedataRouting;
16
16
  /**
17
17
  * Error Message.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -9,9 +9,9 @@
9
9
  */
10
10
  import { TracedataRouting } from './tracedata';
11
11
  /**
12
- * Error details.
12
+ * 500 Error details.
13
13
  */
14
- export interface InlineResponse500Routing {
14
+ export interface General500Routing {
15
15
  tracedata: TracedataRouting;
16
16
  /**
17
17
  * Error message.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
package/model/models.d.ts CHANGED
@@ -1,13 +1,13 @@
1
1
  export * from './checkResult';
2
+ export * from './general400';
3
+ export * from './general401';
4
+ export * from './general402';
5
+ export * from './general404Detail';
6
+ export * from './general404';
7
+ export * from './general429';
8
+ export * from './general500';
2
9
  export * from './geoSettings';
3
10
  export * from './geopoint';
4
- export * from './inlineResponse400';
5
- export * from './inlineResponse401';
6
- export * from './inlineResponse402';
7
- export * from './inlineResponse404Detail';
8
- export * from './inlineResponse404';
9
- export * from './inlineResponse429';
10
- export * from './inlineResponse500';
11
11
  export * from './matrixResult';
12
12
  export * from './matrixTask';
13
13
  export * from './routeLeg';
package/model/route.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Routing [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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 [RO]
3
3
  *
4
- * The version of the OpenAPI document: 6.4.1962
4
+ * The version of the OpenAPI document: 6.6.2006
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": "6.4.1962",
3
+ "version": "6.6.2006",
4
4
  "description": "OpenAPI client for @veeroute/lss-routing-angular",
5
5
  "author": "Veeroute Team",
6
6
  "keywords": [
package/param.d.ts ADDED
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Standard parameter styles defined by OpenAPI spec
3
+ */
4
+ export declare type StandardParamStyle = 'matrix' | 'label' | 'form' | 'simple' | 'spaceDelimited' | 'pipeDelimited' | 'deepObject';
5
+ /**
6
+ * The OpenAPI standard {@link StandardParamStyle}s may be extended by custom styles by the user.
7
+ */
8
+ export declare type ParamStyle = StandardParamStyle | string;
9
+ /**
10
+ * Standard parameter locations defined by OpenAPI spec
11
+ */
12
+ export declare type ParamLocation = 'query' | 'header' | 'path' | 'cookie';
13
+ /**
14
+ * Standard types as defined in <a href="https://swagger.io/specification/#data-types">OpenAPI Specification: Data Types</a>
15
+ */
16
+ export declare type StandardDataType = "integer" | "number" | "boolean" | "string" | "object" | "array";
17
+ /**
18
+ * Standard {@link DataType}s plus your own types/classes.
19
+ */
20
+ export declare type DataType = StandardDataType | string;
21
+ /**
22
+ * Standard formats as defined in <a href="https://swagger.io/specification/#data-types">OpenAPI Specification: Data Types</a>
23
+ */
24
+ export declare type StandardDataFormat = "int32" | "int64" | "float" | "double" | "byte" | "binary" | "date" | "date-time" | "password";
25
+ export declare type DataFormat = StandardDataFormat | string;
26
+ /**
27
+ * The parameter to encode.
28
+ */
29
+ export interface Param {
30
+ name: string;
31
+ value: unknown;
32
+ in: ParamLocation;
33
+ style: ParamStyle;
34
+ explode: boolean;
35
+ dataType: DataType;
36
+ dataFormat: DataFormat | undefined;
37
+ }
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwMC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUm91dGluZyBbUk9dXG4gKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIE9wZW5BUEkgZG9jdW1lbnQ6IDYuNC4xOTYyXG4gKiBDb250YWN0OiBzZXJ2aWNlZGVza0B2ZWVyb3V0ZS5jb21cbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yLlxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5pbXBvcnQgeyBUcmFjZWRhdGFSb3V0aW5nIH0gZnJvbSAnLi90cmFjZWRhdGEnO1xuXG5cbi8qKlxuICogRXJyb3IgZGV0YWlscy5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBJbmxpbmVSZXNwb25zZTQwMFJvdXRpbmcgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVJvdXRpbmc7XG4gICAgLyoqXG4gICAgICogRXJyb3IgbWVzc2FnZS5cbiAgICAgKi9cbiAgICBtZXNzYWdlPzogc3RyaW5nIHwgbnVsbDtcbn1cblxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwMS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUm91dGluZyBbUk9dXG4gKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIE9wZW5BUEkgZG9jdW1lbnQ6IDYuNC4xOTYyXG4gKiBDb250YWN0OiBzZXJ2aWNlZGVza0B2ZWVyb3V0ZS5jb21cbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yLlxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5pbXBvcnQgeyBUcmFjZWRhdGFSb3V0aW5nIH0gZnJvbSAnLi90cmFjZWRhdGEnO1xuXG5cbi8qKlxuICogRXJyb3IgZGV0YWlscy5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBJbmxpbmVSZXNwb25zZTQwMVJvdXRpbmcgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVJvdXRpbmc7XG4gICAgLyoqXG4gICAgICogRXJyb3IgbWVzc2FnZS5cbiAgICAgKi9cbiAgICBtZXNzYWdlPzogc3RyaW5nIHwgbnVsbDtcbn1cblxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwMi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUm91dGluZyBbUk9dXG4gKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIE9wZW5BUEkgZG9jdW1lbnQ6IDYuNC4xOTYyXG4gKiBDb250YWN0OiBzZXJ2aWNlZGVza0B2ZWVyb3V0ZS5jb21cbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yLlxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5pbXBvcnQgeyBUcmFjZWRhdGFSb3V0aW5nIH0gZnJvbSAnLi90cmFjZWRhdGEnO1xuXG5cbi8qKlxuICogRXJyb3IgZGV0YWlscy5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBJbmxpbmVSZXNwb25zZTQwMlJvdXRpbmcgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVJvdXRpbmc7XG4gICAgLyoqXG4gICAgICogRXJyb3IgbWVzc2FnZS5cbiAgICAgKi9cbiAgICBtZXNzYWdlPzogc3RyaW5nIHwgbnVsbDtcbn1cblxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwNC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUm91dGluZyBbUk9dXG4gKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIE9wZW5BUEkgZG9jdW1lbnQ6IDYuNC4xOTYyXG4gKiBDb250YWN0OiBzZXJ2aWNlZGVza0B2ZWVyb3V0ZS5jb21cbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yLlxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5pbXBvcnQgeyBJbmxpbmVSZXNwb25zZTQwNERldGFpbFJvdXRpbmcgfSBmcm9tICcuL2lubGluZVJlc3BvbnNlNDA0RGV0YWlsJztcblxuXG4vKipcbiAqIEVycm9yIGRldGFpbHMuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgSW5saW5lUmVzcG9uc2U0MDRSb3V0aW5nIHsgXG4gICAgLyoqXG4gICAgICogUmVzb3VyY2UgaWRlbnRpZmllci5cbiAgICAgKi9cbiAgICByZXNvdXJjZV9pZD86IHN0cmluZyB8IG51bGw7XG4gICAgZGV0YWlsPzogSW5saW5lUmVzcG9uc2U0MDREZXRhaWxSb3V0aW5nIHwgbnVsbDtcbn1cblxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDREZXRhaWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwNERldGFpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUm91dGluZyBbUk9dXG4gKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIE9wZW5BUEkgZG9jdW1lbnQ6IDYuNC4xOTYyXG4gKiBDb250YWN0OiBzZXJ2aWNlZGVza0B2ZWVyb3V0ZS5jb21cbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yLlxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5pbXBvcnQgeyBUcmFjZWRhdGFSb3V0aW5nIH0gZnJvbSAnLi90cmFjZWRhdGEnO1xuXG5cbi8qKlxuICogUmVzb3VyY2UgZGV0YWlscy5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBJbmxpbmVSZXNwb25zZTQwNERldGFpbFJvdXRpbmcgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVJvdXRpbmc7XG59XG5cbiJdfQ==
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MjkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQyOS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUm91dGluZyBbUk9dXG4gKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIE9wZW5BUEkgZG9jdW1lbnQ6IDYuNC4xOTYyXG4gKiBDb250YWN0OiBzZXJ2aWNlZGVza0B2ZWVyb3V0ZS5jb21cbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yLlxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5pbXBvcnQgeyBUcmFjZWRhdGFSb3V0aW5nIH0gZnJvbSAnLi90cmFjZWRhdGEnO1xuXG5cbi8qKlxuICogRXJyb3IgZGV0YWlscy5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBJbmxpbmVSZXNwb25zZTQyOVJvdXRpbmcgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVJvdXRpbmc7XG4gICAgLyoqXG4gICAgICogRXJyb3IgTWVzc2FnZS5cbiAgICAgKi9cbiAgICBtZXNzYWdlPzogc3RyaW5nIHwgbnVsbDtcbn1cblxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U1MDAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTUwMC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUm91dGluZyBbUk9dXG4gKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIE9wZW5BUEkgZG9jdW1lbnQ6IDYuNC4xOTYyXG4gKiBDb250YWN0OiBzZXJ2aWNlZGVza0B2ZWVyb3V0ZS5jb21cbiAqXG4gKiBOT1RFOiBUaGlzIGNsYXNzIGlzIGF1dG8gZ2VuZXJhdGVkIGJ5IE9wZW5BUEkgR2VuZXJhdG9yLlxuICogRG8gbm90IGVkaXQgdGhlIGNsYXNzIG1hbnVhbGx5LlxuICovXG5pbXBvcnQgeyBUcmFjZWRhdGFSb3V0aW5nIH0gZnJvbSAnLi90cmFjZWRhdGEnO1xuXG5cbi8qKlxuICogRXJyb3IgZGV0YWlscy5cbiAqL1xuZXhwb3J0IGludGVyZmFjZSBJbmxpbmVSZXNwb25zZTUwMFJvdXRpbmcgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVJvdXRpbmc7XG4gICAgLyoqXG4gICAgICogRXJyb3IgbWVzc2FnZS5cbiAgICAgKi9cbiAgICBtZXNzYWdlPzogc3RyaW5nIHwgbnVsbDtcbn1cblxuIl19