@veeroute/lss-packer-angular 6.4.1962 → 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
@@ -39,6 +39,12 @@ class Configuration {
39
39
  this.basePath = configurationParameters.basePath;
40
40
  this.withCredentials = configurationParameters.withCredentials;
41
41
  this.encoder = configurationParameters.encoder;
42
+ if (configurationParameters.encodeParam) {
43
+ this.encodeParam = configurationParameters.encodeParam;
44
+ }
45
+ else {
46
+ this.encodeParam = param => this.defaultEncodeParam(param);
47
+ }
42
48
  if (configurationParameters.credentials) {
43
49
  this.credentials = configurationParameters.credentials;
44
50
  }
@@ -108,12 +114,25 @@ class Configuration {
108
114
  ? value()
109
115
  : value;
110
116
  }
117
+ defaultEncodeParam(param) {
118
+ // This implementation exists as fallback for missing configuration
119
+ // and for backwards compatibility to older typescript-angular generator versions.
120
+ // It only works for the 'simple' parameter style.
121
+ // Date-handling only works for the 'date-time' format.
122
+ // All other styles and Date-formats are probably handled incorrectly.
123
+ //
124
+ // But: if that's all you need (i.e.: the most common use-case): no need for customization!
125
+ const value = param.dataFormat === 'date-time' && param.value instanceof Date
126
+ ? param.value.toISOString()
127
+ : param.value;
128
+ return encodeURIComponent(String(value));
129
+ }
111
130
  }
112
131
 
113
132
  /**
114
133
  * VRt.Packer [PC]
115
134
  *
116
- * The version of the OpenAPI document: 6.4.1962
135
+ * The version of the OpenAPI document: 6.5.1990
117
136
  * Contact: servicedesk@veeroute.com
118
137
  *
119
138
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -129,6 +148,9 @@ class ConvertService {
129
148
  this.configuration = configuration;
130
149
  }
131
150
  if (typeof this.configuration.basePath !== 'string') {
151
+ if (Array.isArray(basePath) && basePath.length > 0) {
152
+ basePath = basePath[0];
153
+ }
132
154
  if (typeof basePath !== 'string') {
133
155
  basePath = this.basePath;
134
156
  }
@@ -136,6 +158,7 @@ class ConvertService {
136
158
  }
137
159
  this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
138
160
  }
161
+ // @ts-ignore
139
162
  addToHttpParams(httpParams, value, key) {
140
163
  if (typeof value === "object" && value instanceof Date === false) {
141
164
  httpParams = this.addToHttpParamsRecursive(httpParams, value);
@@ -221,8 +244,10 @@ class ConvertService {
221
244
  responseType_ = 'blob';
222
245
  }
223
246
  }
224
- return this.httpClient.post(`${this.configuration.basePath}/packer/convert/gltf`, renderTaskPacker, {
247
+ let localVarPath = `/packer/convert/gltf`;
248
+ return this.httpClient.request('post', `${this.configuration.basePath}${localVarPath}`, {
225
249
  context: localVarHttpContext,
250
+ body: renderTaskPacker,
226
251
  responseType: responseType_,
227
252
  withCredentials: this.configuration.withCredentials,
228
253
  headers: localVarHeaders,
@@ -250,7 +275,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
250
275
  /**
251
276
  * VRt.Packer [PC]
252
277
  *
253
- * The version of the OpenAPI document: 6.4.1962
278
+ * The version of the OpenAPI document: 6.5.1990
254
279
  * Contact: servicedesk@veeroute.com
255
280
  *
256
281
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -266,6 +291,9 @@ class PackService {
266
291
  this.configuration = configuration;
267
292
  }
268
293
  if (typeof this.configuration.basePath !== 'string') {
294
+ if (Array.isArray(basePath) && basePath.length > 0) {
295
+ basePath = basePath[0];
296
+ }
269
297
  if (typeof basePath !== 'string') {
270
298
  basePath = this.basePath;
271
299
  }
@@ -273,6 +301,7 @@ class PackService {
273
301
  }
274
302
  this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
275
303
  }
304
+ // @ts-ignore
276
305
  addToHttpParams(httpParams, value, key) {
277
306
  if (typeof value === "object" && value instanceof Date === false) {
278
307
  httpParams = this.addToHttpParamsRecursive(httpParams, value);
@@ -349,7 +378,8 @@ class PackService {
349
378
  responseType_ = 'blob';
350
379
  }
351
380
  }
352
- return this.httpClient.delete(`${this.configuration.basePath}/packer/pack/calculation_async/${encodeURIComponent(String(id))}`, {
381
+ let localVarPath = `/packer/pack/calculation_async/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
382
+ return this.httpClient.request('delete', `${this.configuration.basePath}${localVarPath}`, {
353
383
  context: localVarHttpContext,
354
384
  responseType: responseType_,
355
385
  withCredentials: this.configuration.withCredentials,
@@ -397,7 +427,8 @@ class PackService {
397
427
  responseType_ = 'blob';
398
428
  }
399
429
  }
400
- return this.httpClient.delete(`${this.configuration.basePath}/packer/pack/result/${encodeURIComponent(String(id))}`, {
430
+ let localVarPath = `/packer/pack/result/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
431
+ return this.httpClient.request('delete', `${this.configuration.basePath}${localVarPath}`, {
401
432
  context: localVarHttpContext,
402
433
  responseType: responseType_,
403
434
  withCredentials: this.configuration.withCredentials,
@@ -445,7 +476,8 @@ class PackService {
445
476
  responseType_ = 'blob';
446
477
  }
447
478
  }
448
- return this.httpClient.get(`${this.configuration.basePath}/packer/pack/calculation_async/${encodeURIComponent(String(id))}`, {
479
+ let localVarPath = `/packer/pack/calculation_async/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
480
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
449
481
  context: localVarHttpContext,
450
482
  responseType: responseType_,
451
483
  withCredentials: this.configuration.withCredentials,
@@ -493,7 +525,8 @@ class PackService {
493
525
  responseType_ = 'blob';
494
526
  }
495
527
  }
496
- return this.httpClient.get(`${this.configuration.basePath}/packer/pack/result/${encodeURIComponent(String(id))}`, {
528
+ let localVarPath = `/packer/pack/result/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
529
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
497
530
  context: localVarHttpContext,
498
531
  responseType: responseType_,
499
532
  withCredentials: this.configuration.withCredentials,
@@ -549,8 +582,10 @@ class PackService {
549
582
  responseType_ = 'blob';
550
583
  }
551
584
  }
552
- return this.httpClient.post(`${this.configuration.basePath}/packer/pack/calculation`, packTaskPacker, {
585
+ let localVarPath = `/packer/pack/calculation`;
586
+ return this.httpClient.request('post', `${this.configuration.basePath}${localVarPath}`, {
553
587
  context: localVarHttpContext,
588
+ body: packTaskPacker,
554
589
  responseType: responseType_,
555
590
  withCredentials: this.configuration.withCredentials,
556
591
  headers: localVarHeaders,
@@ -605,8 +640,10 @@ class PackService {
605
640
  responseType_ = 'blob';
606
641
  }
607
642
  }
608
- return this.httpClient.post(`${this.configuration.basePath}/packer/pack/calculation_async`, packTaskPacker, {
643
+ let localVarPath = `/packer/pack/calculation_async`;
644
+ return this.httpClient.request('post', `${this.configuration.basePath}${localVarPath}`, {
609
645
  context: localVarHttpContext,
646
+ body: packTaskPacker,
610
647
  responseType: responseType_,
611
648
  withCredentials: this.configuration.withCredentials,
612
649
  headers: localVarHeaders,
@@ -661,8 +698,10 @@ class PackService {
661
698
  responseType_ = 'blob';
662
699
  }
663
700
  }
664
- return this.httpClient.post(`${this.configuration.basePath}/packer/pack/validation`, packTaskPacker, {
701
+ let localVarPath = `/packer/pack/validation`;
702
+ return this.httpClient.request('post', `${this.configuration.basePath}${localVarPath}`, {
665
703
  context: localVarHttpContext,
704
+ body: packTaskPacker,
666
705
  responseType: responseType_,
667
706
  withCredentials: this.configuration.withCredentials,
668
707
  headers: localVarHeaders,
@@ -690,7 +729,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
690
729
  /**
691
730
  * VRt.Packer [PC]
692
731
  *
693
- * The version of the OpenAPI document: 6.4.1962
732
+ * The version of the OpenAPI document: 6.5.1990
694
733
  * Contact: servicedesk@veeroute.com
695
734
  *
696
735
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -706,6 +745,9 @@ class SystemService {
706
745
  this.configuration = configuration;
707
746
  }
708
747
  if (typeof this.configuration.basePath !== 'string') {
748
+ if (Array.isArray(basePath) && basePath.length > 0) {
749
+ basePath = basePath[0];
750
+ }
709
751
  if (typeof basePath !== 'string') {
710
752
  basePath = this.basePath;
711
753
  }
@@ -713,6 +755,7 @@ class SystemService {
713
755
  }
714
756
  this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
715
757
  }
758
+ // @ts-ignore
716
759
  addToHttpParams(httpParams, value, key) {
717
760
  if (typeof value === "object" && value instanceof Date === false) {
718
761
  httpParams = this.addToHttpParamsRecursive(httpParams, value);
@@ -779,7 +822,8 @@ class SystemService {
779
822
  responseType_ = 'blob';
780
823
  }
781
824
  }
782
- return this.httpClient.get(`${this.configuration.basePath}/packer/system/check`, {
825
+ let localVarPath = `/packer/system/check`;
826
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
783
827
  context: localVarHttpContext,
784
828
  responseType: responseType_,
785
829
  withCredentials: this.configuration.withCredentials,
@@ -823,7 +867,8 @@ class SystemService {
823
867
  responseType_ = 'blob';
824
868
  }
825
869
  }
826
- return this.httpClient.get(`${this.configuration.basePath}/packer/file/${encodeURIComponent(String(filename))}`, {
870
+ let localVarPath = `/packer/file/${this.configuration.encodeParam({ name: "filename", value: filename, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined })}`;
871
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
827
872
  context: localVarHttpContext,
828
873
  responseType: responseType_,
829
874
  withCredentials: this.configuration.withCredentials,
@@ -861,7 +906,8 @@ class SystemService {
861
906
  responseType_ = 'blob';
862
907
  }
863
908
  }
864
- return this.httpClient.get(`${this.configuration.basePath}/packer/system/version`, {
909
+ let localVarPath = `/packer/system/version`;
910
+ return this.httpClient.request('get', `${this.configuration.basePath}${localVarPath}`, {
865
911
  context: localVarHttpContext,
866
912
  responseType: responseType_,
867
913
  withCredentials: this.configuration.withCredentials,
@@ -892,7 +938,7 @@ const APIS = [ConvertService, PackService, SystemService];
892
938
  /**
893
939
  * VRt.Packer [PC]
894
940
  *
895
- * The version of the OpenAPI document: 6.4.1962
941
+ * The version of the OpenAPI document: 6.5.1990
896
942
  * Contact: servicedesk@veeroute.com
897
943
  *
898
944
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -902,7 +948,7 @@ const APIS = [ConvertService, PackService, SystemService];
902
948
  /**
903
949
  * VRt.Packer [PC]
904
950
  *
905
- * The version of the OpenAPI document: 6.4.1962
951
+ * The version of the OpenAPI document: 6.5.1990
906
952
  * Contact: servicedesk@veeroute.com
907
953
  *
908
954
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -912,7 +958,7 @@ const APIS = [ConvertService, PackService, SystemService];
912
958
  /**
913
959
  * VRt.Packer [PC]
914
960
  *
915
- * The version of the OpenAPI document: 6.4.1962
961
+ * The version of the OpenAPI document: 6.5.1990
916
962
  * Contact: servicedesk@veeroute.com
917
963
  *
918
964
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -931,12 +977,11 @@ var CalculationStatusPacker;
931
977
  CalculationStatusPacker["CANCELED_BY_TIMEOUT"] = "CANCELED_BY_TIMEOUT";
932
978
  CalculationStatusPacker["FAILED"] = "FAILED";
933
979
  })(CalculationStatusPacker || (CalculationStatusPacker = {}));
934
- ;
935
980
 
936
981
  /**
937
982
  * VRt.Packer [PC]
938
983
  *
939
- * The version of the OpenAPI document: 6.4.1962
984
+ * The version of the OpenAPI document: 6.5.1990
940
985
  * Contact: servicedesk@veeroute.com
941
986
  *
942
987
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -946,7 +991,7 @@ var CalculationStatusPacker;
946
991
  /**
947
992
  * VRt.Packer [PC]
948
993
  *
949
- * The version of the OpenAPI document: 6.4.1962
994
+ * The version of the OpenAPI document: 6.5.1990
950
995
  * Contact: servicedesk@veeroute.com
951
996
  *
952
997
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -956,7 +1001,7 @@ var CalculationStatusPacker;
956
1001
  /**
957
1002
  * VRt.Packer [PC]
958
1003
  *
959
- * The version of the OpenAPI document: 6.4.1962
1004
+ * The version of the OpenAPI document: 6.5.1990
960
1005
  * Contact: servicedesk@veeroute.com
961
1006
  *
962
1007
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -966,7 +1011,7 @@ var CalculationStatusPacker;
966
1011
  /**
967
1012
  * VRt.Packer [PC]
968
1013
  *
969
- * The version of the OpenAPI document: 6.4.1962
1014
+ * The version of the OpenAPI document: 6.5.1990
970
1015
  * Contact: servicedesk@veeroute.com
971
1016
  *
972
1017
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -990,12 +1035,11 @@ var EntityErrorTypePacker;
990
1035
  EntityErrorTypePacker["INVALID_PRODUCT_DIMENSIONS"] = "INVALID_PRODUCT_DIMENSIONS";
991
1036
  EntityErrorTypePacker["INVALID_PRODUCT_COUNT"] = "INVALID_PRODUCT_COUNT";
992
1037
  })(EntityErrorTypePacker || (EntityErrorTypePacker = {}));
993
- ;
994
1038
 
995
1039
  /**
996
1040
  * VRt.Packer [PC]
997
1041
  *
998
- * The version of the OpenAPI document: 6.4.1962
1042
+ * The version of the OpenAPI document: 6.5.1990
999
1043
  * Contact: servicedesk@veeroute.com
1000
1044
  *
1001
1045
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1011,12 +1055,11 @@ var EntityTypePacker;
1011
1055
  EntityTypePacker["PRODUCT"] = "PRODUCT";
1012
1056
  EntityTypePacker["PACKAGE"] = "PACKAGE";
1013
1057
  })(EntityTypePacker || (EntityTypePacker = {}));
1014
- ;
1015
1058
 
1016
1059
  /**
1017
1060
  * VRt.Packer [PC]
1018
1061
  *
1019
- * The version of the OpenAPI document: 6.4.1962
1062
+ * The version of the OpenAPI document: 6.5.1990
1020
1063
  * Contact: servicedesk@veeroute.com
1021
1064
  *
1022
1065
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1032,12 +1075,11 @@ var EntityWarningTypePacker;
1032
1075
  EntityWarningTypePacker["PRODUCT_PACKAGE_FIT"] = "INVALID_PRODUCT_PACKAGE_FIT";
1033
1076
  EntityWarningTypePacker["PRODUCT_COMPATIBILITY"] = "INVALID_PRODUCT_COMPATIBILITY";
1034
1077
  })(EntityWarningTypePacker || (EntityWarningTypePacker = {}));
1035
- ;
1036
1078
 
1037
1079
  /**
1038
1080
  * VRt.Packer [PC]
1039
1081
  *
1040
- * The version of the OpenAPI document: 6.4.1962
1082
+ * The version of the OpenAPI document: 6.5.1990
1041
1083
  * Contact: servicedesk@veeroute.com
1042
1084
  *
1043
1085
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1052,12 +1094,11 @@ var PackageTypePacker;
1052
1094
  PackageTypePacker["PALLET"] = "PALLET";
1053
1095
  PackageTypePacker["MIXBOX"] = "MIXBOX";
1054
1096
  })(PackageTypePacker || (PackageTypePacker = {}));
1055
- ;
1056
1097
 
1057
1098
  /**
1058
1099
  * VRt.Packer [PC]
1059
1100
  *
1060
- * The version of the OpenAPI document: 6.4.1962
1101
+ * The version of the OpenAPI document: 6.5.1990
1061
1102
  * Contact: servicedesk@veeroute.com
1062
1103
  *
1063
1104
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1067,7 +1108,7 @@ var PackageTypePacker;
1067
1108
  /**
1068
1109
  * VRt.Packer [PC]
1069
1110
  *
1070
- * The version of the OpenAPI document: 6.4.1962
1111
+ * The version of the OpenAPI document: 6.5.1990
1071
1112
  * Contact: servicedesk@veeroute.com
1072
1113
  *
1073
1114
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1090,12 +1131,11 @@ var ServiceNamePacker;
1090
1131
  ServiceNamePacker["CLUSTER"] = "CLUSTER";
1091
1132
  ServiceNamePacker["CARGOTIMETABLE"] = "CARGOTIMETABLE";
1092
1133
  })(ServiceNamePacker || (ServiceNamePacker = {}));
1093
- ;
1094
1134
 
1095
1135
  /**
1096
1136
  * VRt.Packer [PC]
1097
1137
  *
1098
- * The version of the OpenAPI document: 6.4.1962
1138
+ * The version of the OpenAPI document: 6.5.1990
1099
1139
  * Contact: servicedesk@veeroute.com
1100
1140
  *
1101
1141
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1105,7 +1145,7 @@ var ServiceNamePacker;
1105
1145
  /**
1106
1146
  * VRt.Packer [PC]
1107
1147
  *
1108
- * The version of the OpenAPI document: 6.4.1962
1148
+ * The version of the OpenAPI document: 6.5.1990
1109
1149
  * Contact: servicedesk@veeroute.com
1110
1150
  *
1111
1151
  * NOTE: This class is auto generated by OpenAPI Generator.