@veeroute/lss-packer-angular 6.3.1926 → 6.5.1990

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 (117) hide show
  1. package/README.md +1 -1
  2. package/api/convertService.d.ts +1 -1
  3. package/api/convertServiceInterface.d.ts +1 -1
  4. package/api/packService.d.ts +1 -1
  5. package/api/packServiceInterface.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/convertService.mjs +9 -3
  10. package/esm2020/api/convertServiceInterface.mjs +1 -1
  11. package/esm2020/api/packService.mjs +23 -9
  12. package/esm2020/api/packServiceInterface.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/attribute.mjs +2 -2
  19. package/esm2020/model/calculationAsyncResult.mjs +1 -1
  20. package/esm2020/model/calculationInfo.mjs +1 -1
  21. package/esm2020/model/calculationSettings.mjs +2 -2
  22. package/esm2020/model/calculationState.mjs +1 -1
  23. package/esm2020/model/calculationStatus.mjs +2 -3
  24. package/esm2020/model/checkResult.mjs +2 -2
  25. package/esm2020/model/coordinates.mjs +2 -2
  26. package/esm2020/model/custom400WithErrorsAndWarnings.mjs +2 -0
  27. package/esm2020/model/dimensions.mjs +2 -2
  28. package/esm2020/model/entityError.mjs +1 -1
  29. package/esm2020/model/entityErrorType.mjs +2 -3
  30. package/esm2020/model/entityPath.mjs +1 -1
  31. package/esm2020/model/entityType.mjs +2 -3
  32. package/esm2020/model/entityWarning.mjs +1 -1
  33. package/esm2020/model/entityWarningType.mjs +2 -3
  34. package/esm2020/model/general401.mjs +2 -0
  35. package/esm2020/model/general402.mjs +2 -0
  36. package/esm2020/model/general403.mjs +2 -0
  37. package/esm2020/model/general404.mjs +2 -0
  38. package/esm2020/model/general404Detail.mjs +2 -0
  39. package/esm2020/model/general429.mjs +2 -0
  40. package/esm2020/model/general500.mjs +2 -0
  41. package/esm2020/model/models.mjs +9 -9
  42. package/esm2020/model/packResult.mjs +1 -1
  43. package/esm2020/model/packSettings.mjs +1 -1
  44. package/esm2020/model/packStatistics.mjs +1 -1
  45. package/esm2020/model/packTask.mjs +1 -1
  46. package/esm2020/model/package.mjs +1 -1
  47. package/esm2020/model/packageLayout.mjs +1 -1
  48. package/esm2020/model/packageStatistics.mjs +1 -1
  49. package/esm2020/model/packageType.mjs +2 -3
  50. package/esm2020/model/product.mjs +1 -1
  51. package/esm2020/model/productGroupLayout.mjs +1 -1
  52. package/esm2020/model/productLayout.mjs +1 -1
  53. package/esm2020/model/renderTask.mjs +1 -1
  54. package/esm2020/model/schemaError.mjs +2 -2
  55. package/esm2020/model/serviceName.mjs +2 -3
  56. package/esm2020/model/tracedata.mjs +1 -1
  57. package/esm2020/model/unpackedItems.mjs +2 -2
  58. package/esm2020/model/validateResult.mjs +1 -1
  59. package/esm2020/model/versionResult.mjs +2 -2
  60. package/esm2020/param.mjs +2 -0
  61. package/fesm2015/veeroute-lss-packer-angular.mjs +66 -26
  62. package/fesm2015/veeroute-lss-packer-angular.mjs.map +1 -1
  63. package/fesm2020/veeroute-lss-packer-angular.mjs +74 -34
  64. package/fesm2020/veeroute-lss-packer-angular.mjs.map +1 -1
  65. package/index.d.ts +1 -0
  66. package/model/attribute.d.ts +1 -1
  67. package/model/calculationAsyncResult.d.ts +1 -1
  68. package/model/calculationInfo.d.ts +1 -1
  69. package/model/calculationSettings.d.ts +1 -1
  70. package/model/calculationState.d.ts +1 -1
  71. package/model/calculationStatus.d.ts +1 -1
  72. package/model/checkResult.d.ts +1 -1
  73. package/model/coordinates.d.ts +1 -1
  74. package/model/{inlineResponse400.d.ts → custom400WithErrorsAndWarnings.d.ts} +2 -2
  75. package/model/dimensions.d.ts +1 -1
  76. package/model/entityError.d.ts +1 -1
  77. package/model/entityErrorType.d.ts +1 -1
  78. package/model/entityPath.d.ts +1 -1
  79. package/model/entityType.d.ts +1 -1
  80. package/model/entityWarning.d.ts +1 -1
  81. package/model/entityWarningType.d.ts +1 -1
  82. package/model/{inlineResponse401.d.ts → general401.d.ts} +3 -3
  83. package/model/{inlineResponse402.d.ts → general402.d.ts} +3 -3
  84. package/model/{inlineResponse403.d.ts → general403.d.ts} +3 -3
  85. package/model/{inlineResponse404.d.ts → general404.d.ts} +5 -5
  86. package/model/{inlineResponse404Detail.d.ts → general404Detail.d.ts} +2 -2
  87. package/model/{inlineResponse429.d.ts → general429.d.ts} +3 -3
  88. package/model/{inlineResponse500.d.ts → general500.d.ts} +3 -3
  89. package/model/models.d.ts +8 -8
  90. package/model/packResult.d.ts +1 -1
  91. package/model/packSettings.d.ts +1 -1
  92. package/model/packStatistics.d.ts +1 -1
  93. package/model/packTask.d.ts +1 -1
  94. package/model/package.d.ts +1 -1
  95. package/model/packageLayout.d.ts +1 -1
  96. package/model/packageStatistics.d.ts +1 -1
  97. package/model/packageType.d.ts +1 -1
  98. package/model/product.d.ts +1 -1
  99. package/model/productGroupLayout.d.ts +1 -1
  100. package/model/productLayout.d.ts +1 -1
  101. package/model/renderTask.d.ts +1 -1
  102. package/model/schemaError.d.ts +1 -1
  103. package/model/serviceName.d.ts +1 -1
  104. package/model/tracedata.d.ts +1 -1
  105. package/model/unpackedItems.d.ts +1 -1
  106. package/model/validateResult.d.ts +1 -1
  107. package/model/versionResult.d.ts +1 -1
  108. package/package.json +1 -1
  109. package/param.d.ts +37 -0
  110. package/esm2020/model/inlineResponse400.mjs +0 -2
  111. package/esm2020/model/inlineResponse401.mjs +0 -2
  112. package/esm2020/model/inlineResponse402.mjs +0 -2
  113. package/esm2020/model/inlineResponse403.mjs +0 -2
  114. package/esm2020/model/inlineResponse404.mjs +0 -2
  115. package/esm2020/model/inlineResponse404Detail.mjs +0 -2
  116. package/esm2020/model/inlineResponse429.mjs +0 -2
  117. package/esm2020/model/inlineResponse500.mjs +0 -2
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -14,7 +14,7 @@ import { EntityErrorPacker } from './entityError';
14
14
  /**
15
15
  * Error details.
16
16
  */
17
- export interface InlineResponse400Packer {
17
+ export interface Custom400WithErrorsAndWarningsPacker {
18
18
  tracedata: TracedataPacker;
19
19
  /**
20
20
  * Error message.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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 { TracedataPacker } from './tracedata';
11
11
  /**
12
- * Error details.
12
+ * 401 Error details.
13
13
  */
14
- export interface InlineResponse401Packer {
14
+ export interface General401Packer {
15
15
  tracedata: TracedataPacker;
16
16
  /**
17
17
  * Error message.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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 { TracedataPacker } from './tracedata';
11
11
  /**
12
- * Error details.
12
+ * 402 Error details.
13
13
  */
14
- export interface InlineResponse402Packer {
14
+ export interface General402Packer {
15
15
  tracedata: TracedataPacker;
16
16
  /**
17
17
  * Error message.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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 { TracedataPacker } from './tracedata';
11
11
  /**
12
- * Error details.
12
+ * 403 Error details.
13
13
  */
14
- export interface InlineResponse403Packer {
14
+ export interface General403Packer {
15
15
  tracedata: TracedataPacker;
16
16
  /**
17
17
  * Error message.
@@ -1,20 +1,20 @@
1
1
  /**
2
2
  * VRt.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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 { InlineResponse404DetailPacker } from './inlineResponse404Detail';
10
+ import { General404DetailPacker } from './general404Detail';
11
11
  /**
12
- * Error details.
12
+ * 404 Error details.
13
13
  */
14
- export interface InlineResponse404Packer {
14
+ export interface General404Packer {
15
15
  /**
16
16
  * Resource identifier.
17
17
  */
18
18
  resource_id?: string | null;
19
- detail?: InlineResponse404DetailPacker | null;
19
+ detail?: General404DetailPacker | null;
20
20
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -11,6 +11,6 @@ import { TracedataPacker } from './tracedata';
11
11
  /**
12
12
  * Resource details.
13
13
  */
14
- export interface InlineResponse404DetailPacker {
14
+ export interface General404DetailPacker {
15
15
  tracedata: TracedataPacker;
16
16
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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 { TracedataPacker } from './tracedata';
11
11
  /**
12
- * Error details.
12
+ * 429 Error details.
13
13
  */
14
- export interface InlineResponse429Packer {
14
+ export interface General429Packer {
15
15
  tracedata: TracedataPacker;
16
16
  /**
17
17
  * Error Message.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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 { TracedataPacker } from './tracedata';
11
11
  /**
12
- * Error details.
12
+ * 500 Error details.
13
13
  */
14
- export interface InlineResponse500Packer {
14
+ export interface General500Packer {
15
15
  tracedata: TracedataPacker;
16
16
  /**
17
17
  * Error message.
package/model/models.d.ts CHANGED
@@ -6,6 +6,7 @@ export * from './calculationState';
6
6
  export * from './calculationStatus';
7
7
  export * from './checkResult';
8
8
  export * from './coordinates';
9
+ export * from './custom400WithErrorsAndWarnings';
9
10
  export * from './dimensions';
10
11
  export * from './entityError';
11
12
  export * from './entityErrorType';
@@ -13,14 +14,13 @@ export * from './entityPath';
13
14
  export * from './entityType';
14
15
  export * from './entityWarning';
15
16
  export * from './entityWarningType';
16
- export * from './inlineResponse400';
17
- export * from './inlineResponse401';
18
- export * from './inlineResponse402';
19
- export * from './inlineResponse403';
20
- export * from './inlineResponse404Detail';
21
- export * from './inlineResponse404';
22
- export * from './inlineResponse429';
23
- export * from './inlineResponse500';
17
+ export * from './general401';
18
+ export * from './general402';
19
+ export * from './general403';
20
+ export * from './general404Detail';
21
+ export * from './general404';
22
+ export * from './general429';
23
+ export * from './general500';
24
24
  export * from './packResult';
25
25
  export * from './packSettings';
26
26
  export * from './packStatistics';
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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.Packer [PC]
3
3
  *
4
- * The version of the OpenAPI document: 6.3.1926
4
+ * The version of the OpenAPI document: 6.5.1990
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-packer-angular",
3
- "version": "6.3.1926",
3
+ "version": "6.5.1990",
4
4
  "description": "OpenAPI client for @veeroute/lss-packer-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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwMC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUGFja2VyIFtQQ11cbiAqXG4gKiBUaGUgdmVyc2lvbiBvZiB0aGUgT3BlbkFQSSBkb2N1bWVudDogNi4zLjE5MjZcbiAqIENvbnRhY3Q6IHNlcnZpY2VkZXNrQHZlZXJvdXRlLmNvbVxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IuXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbmltcG9ydCB7IFNjaGVtYUVycm9yUGFja2VyIH0gZnJvbSAnLi9zY2hlbWFFcnJvcic7XG5pbXBvcnQgeyBUcmFjZWRhdGFQYWNrZXIgfSBmcm9tICcuL3RyYWNlZGF0YSc7XG5pbXBvcnQgeyBFbnRpdHlXYXJuaW5nUGFja2VyIH0gZnJvbSAnLi9lbnRpdHlXYXJuaW5nJztcbmltcG9ydCB7IEVudGl0eUVycm9yUGFja2VyIH0gZnJvbSAnLi9lbnRpdHlFcnJvcic7XG5cblxuLyoqXG4gKiBFcnJvciBkZXRhaWxzLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIElubGluZVJlc3BvbnNlNDAwUGFja2VyIHsgXG4gICAgdHJhY2VkYXRhOiBUcmFjZWRhdGFQYWNrZXI7XG4gICAgLyoqXG4gICAgICogRXJyb3IgbWVzc2FnZS5cbiAgICAgKi9cbiAgICBtZXNzYWdlPzogc3RyaW5nIHwgbnVsbDtcbiAgICAvKipcbiAgICAgKiBFcnJvcnMgbGlzdC5cbiAgICAgKi9cbiAgICBzY2hlbWFfZXJyb3JzPzogQXJyYXk8U2NoZW1hRXJyb3JQYWNrZXI+O1xuICAgIC8qKlxuICAgICAqIEEgbGlzdCBvZiBlcnJvcnMgaW4gdGhlIHNvdXJjZSBkYXRhIHRoYXQgbWFrZSBpdCBpbXBvc3NpYmxlIHRvIHN0YXJ0IHRoZSBjYWxjdWxhdGlvbi4gXG4gICAgICovXG4gICAgbG9naWNhbF9lcnJvcnM/OiBBcnJheTxFbnRpdHlFcnJvclBhY2tlcj47XG4gICAgLyoqXG4gICAgICogTGlzdCBvZiB3YXJuaW5ncy4gRGVwZW5kaW5nIG9uIHRoZSBmbGFnIGBjYWxjdWxhdGlvbl9zZXR0aW5ncy50cmVhdF93YXJuaW5nc19hc19lcnJvcnNgIC0gdHJpZ2dlcmVkIGNoZWNrcyBhcmUgaW50ZXJwcmV0ZWQgYXMgZXJyb3JzIG9yIHJlc3VsdCBpbiB0aGUgcmVtb3ZhbCBvZiBlcnJvbmVvdXMgZGF0YSBmcm9tIHRoZSBjYWxjdWxhdGlvbi4gXG4gICAgICovXG4gICAgd2FybmluZ3M/OiBBcnJheTxFbnRpdHlXYXJuaW5nUGFja2VyPjtcbn1cblxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwMS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUGFja2VyIFtQQ11cbiAqXG4gKiBUaGUgdmVyc2lvbiBvZiB0aGUgT3BlbkFQSSBkb2N1bWVudDogNi4zLjE5MjZcbiAqIENvbnRhY3Q6IHNlcnZpY2VkZXNrQHZlZXJvdXRlLmNvbVxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IuXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbmltcG9ydCB7IFRyYWNlZGF0YVBhY2tlciB9IGZyb20gJy4vdHJhY2VkYXRhJztcblxuXG4vKipcbiAqIEVycm9yIGRldGFpbHMuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgSW5saW5lUmVzcG9uc2U0MDFQYWNrZXIgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVBhY2tlcjtcbiAgICAvKipcbiAgICAgKiBFcnJvciBtZXNzYWdlLlxuICAgICAqL1xuICAgIG1lc3NhZ2U/OiBzdHJpbmcgfCBudWxsO1xufVxuXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwMi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUGFja2VyIFtQQ11cbiAqXG4gKiBUaGUgdmVyc2lvbiBvZiB0aGUgT3BlbkFQSSBkb2N1bWVudDogNi4zLjE5MjZcbiAqIENvbnRhY3Q6IHNlcnZpY2VkZXNrQHZlZXJvdXRlLmNvbVxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IuXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbmltcG9ydCB7IFRyYWNlZGF0YVBhY2tlciB9IGZyb20gJy4vdHJhY2VkYXRhJztcblxuXG4vKipcbiAqIEVycm9yIGRldGFpbHMuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgSW5saW5lUmVzcG9uc2U0MDJQYWNrZXIgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVBhY2tlcjtcbiAgICAvKipcbiAgICAgKiBFcnJvciBtZXNzYWdlLlxuICAgICAqL1xuICAgIG1lc3NhZ2U/OiBzdHJpbmcgfCBudWxsO1xufVxuXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwMy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUGFja2VyIFtQQ11cbiAqXG4gKiBUaGUgdmVyc2lvbiBvZiB0aGUgT3BlbkFQSSBkb2N1bWVudDogNi4zLjE5MjZcbiAqIENvbnRhY3Q6IHNlcnZpY2VkZXNrQHZlZXJvdXRlLmNvbVxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IuXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbmltcG9ydCB7IFRyYWNlZGF0YVBhY2tlciB9IGZyb20gJy4vdHJhY2VkYXRhJztcblxuXG4vKipcbiAqIEVycm9yIGRldGFpbHMuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgSW5saW5lUmVzcG9uc2U0MDNQYWNrZXIgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVBhY2tlcjtcbiAgICAvKipcbiAgICAgKiBFcnJvciBtZXNzYWdlLlxuICAgICAqL1xuICAgIG1lc3NhZ2U/OiBzdHJpbmcgfCBudWxsO1xufVxuXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwNC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUGFja2VyIFtQQ11cbiAqXG4gKiBUaGUgdmVyc2lvbiBvZiB0aGUgT3BlbkFQSSBkb2N1bWVudDogNi4zLjE5MjZcbiAqIENvbnRhY3Q6IHNlcnZpY2VkZXNrQHZlZXJvdXRlLmNvbVxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IuXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbmltcG9ydCB7IElubGluZVJlc3BvbnNlNDA0RGV0YWlsUGFja2VyIH0gZnJvbSAnLi9pbmxpbmVSZXNwb25zZTQwNERldGFpbCc7XG5cblxuLyoqXG4gKiBFcnJvciBkZXRhaWxzLlxuICovXG5leHBvcnQgaW50ZXJmYWNlIElubGluZVJlc3BvbnNlNDA0UGFja2VyIHsgXG4gICAgLyoqXG4gICAgICogUmVzb3VyY2UgaWRlbnRpZmllci5cbiAgICAgKi9cbiAgICByZXNvdXJjZV9pZD86IHN0cmluZyB8IG51bGw7XG4gICAgZGV0YWlsPzogSW5saW5lUmVzcG9uc2U0MDREZXRhaWxQYWNrZXIgfCBudWxsO1xufVxuXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MDREZXRhaWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQwNERldGFpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUGFja2VyIFtQQ11cbiAqXG4gKiBUaGUgdmVyc2lvbiBvZiB0aGUgT3BlbkFQSSBkb2N1bWVudDogNi4zLjE5MjZcbiAqIENvbnRhY3Q6IHNlcnZpY2VkZXNrQHZlZXJvdXRlLmNvbVxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IuXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbmltcG9ydCB7IFRyYWNlZGF0YVBhY2tlciB9IGZyb20gJy4vdHJhY2VkYXRhJztcblxuXG4vKipcbiAqIFJlc291cmNlIGRldGFpbHMuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgSW5saW5lUmVzcG9uc2U0MDREZXRhaWxQYWNrZXIgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVBhY2tlcjtcbn1cblxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U0MjkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTQyOS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUGFja2VyIFtQQ11cbiAqXG4gKiBUaGUgdmVyc2lvbiBvZiB0aGUgT3BlbkFQSSBkb2N1bWVudDogNi4zLjE5MjZcbiAqIENvbnRhY3Q6IHNlcnZpY2VkZXNrQHZlZXJvdXRlLmNvbVxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IuXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbmltcG9ydCB7IFRyYWNlZGF0YVBhY2tlciB9IGZyb20gJy4vdHJhY2VkYXRhJztcblxuXG4vKipcbiAqIEVycm9yIGRldGFpbHMuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgSW5saW5lUmVzcG9uc2U0MjlQYWNrZXIgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVBhY2tlcjtcbiAgICAvKipcbiAgICAgKiBFcnJvciBNZXNzYWdlLlxuICAgICAqL1xuICAgIG1lc3NhZ2U/OiBzdHJpbmcgfCBudWxsO1xufVxuXG4iXX0=
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lUmVzcG9uc2U1MDAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9tb2RlbC9pbmxpbmVSZXNwb25zZTUwMC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBWUnQuUGFja2VyIFtQQ11cbiAqXG4gKiBUaGUgdmVyc2lvbiBvZiB0aGUgT3BlbkFQSSBkb2N1bWVudDogNi4zLjE5MjZcbiAqIENvbnRhY3Q6IHNlcnZpY2VkZXNrQHZlZXJvdXRlLmNvbVxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IuXG4gKiBEbyBub3QgZWRpdCB0aGUgY2xhc3MgbWFudWFsbHkuXG4gKi9cbmltcG9ydCB7IFRyYWNlZGF0YVBhY2tlciB9IGZyb20gJy4vdHJhY2VkYXRhJztcblxuXG4vKipcbiAqIEVycm9yIGRldGFpbHMuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgSW5saW5lUmVzcG9uc2U1MDBQYWNrZXIgeyBcbiAgICB0cmFjZWRhdGE6IFRyYWNlZGF0YVBhY2tlcjtcbiAgICAvKipcbiAgICAgKiBFcnJvciBtZXNzYWdlLlxuICAgICAqL1xuICAgIG1lc3NhZ2U/OiBzdHJpbmcgfCBudWxsO1xufVxuXG4iXX0=