@veeroute/lss-packer-angular 4.7.1599

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 (114) hide show
  1. package/README.md +156 -0
  2. package/api/api.d.ts +10 -0
  3. package/api/convertService.d.ts +44 -0
  4. package/api/convertServiceInterface.d.ts +28 -0
  5. package/api/packService.d.ts +162 -0
  6. package/api/packServiceInterface.d.ts +86 -0
  7. package/api/systemService.d.ts +63 -0
  8. package/api/systemServiceInterface.d.ts +30 -0
  9. package/api.module.d.ts +7 -0
  10. package/bundles/veeroute-lss-packer-angular.umd.js +1086 -0
  11. package/bundles/veeroute-lss-packer-angular.umd.js.map +1 -0
  12. package/cfg/method_groups.json +64 -0
  13. package/configuration.d.ts +80 -0
  14. package/encoder.d.ts +11 -0
  15. package/esm2015/api/api.js +11 -0
  16. package/esm2015/api/convertService.js +146 -0
  17. package/esm2015/api/convertServiceInterface.js +2 -0
  18. package/esm2015/api/packService.js +449 -0
  19. package/esm2015/api/packServiceInterface.js +2 -0
  20. package/esm2015/api/systemService.js +165 -0
  21. package/esm2015/api/systemServiceInterface.js +2 -0
  22. package/esm2015/api.module.js +33 -0
  23. package/esm2015/configuration.js +80 -0
  24. package/esm2015/encoder.js +19 -0
  25. package/esm2015/index.js +6 -0
  26. package/esm2015/model/calculationAsyncResult.js +2 -0
  27. package/esm2015/model/calculationInfo.js +2 -0
  28. package/esm2015/model/calculationSettings.js +13 -0
  29. package/esm2015/model/calculationState.js +2 -0
  30. package/esm2015/model/calculationStatus.js +26 -0
  31. package/esm2015/model/checkResult.js +13 -0
  32. package/esm2015/model/coordinates.js +13 -0
  33. package/esm2015/model/dimensions.js +13 -0
  34. package/esm2015/model/entityError.js +2 -0
  35. package/esm2015/model/entityErrorType.js +21 -0
  36. package/esm2015/model/entityPath.js +2 -0
  37. package/esm2015/model/entityType.js +23 -0
  38. package/esm2015/model/entityValidation.js +2 -0
  39. package/esm2015/model/entityValidationType.js +20 -0
  40. package/esm2015/model/inlineResponse400.js +2 -0
  41. package/esm2015/model/inlineResponse401.js +2 -0
  42. package/esm2015/model/inlineResponse402.js +2 -0
  43. package/esm2015/model/inlineResponse403.js +2 -0
  44. package/esm2015/model/inlineResponse404.js +2 -0
  45. package/esm2015/model/inlineResponse404Detail.js +2 -0
  46. package/esm2015/model/inlineResponse429.js +2 -0
  47. package/esm2015/model/inlineResponse500.js +2 -0
  48. package/esm2015/model/models.js +40 -0
  49. package/esm2015/model/packResult.js +2 -0
  50. package/esm2015/model/packSettings.js +2 -0
  51. package/esm2015/model/packStatistics.js +13 -0
  52. package/esm2015/model/packTask.js +2 -0
  53. package/esm2015/model/package.js +2 -0
  54. package/esm2015/model/packageLayout.js +2 -0
  55. package/esm2015/model/packageType.js +22 -0
  56. package/esm2015/model/product.js +2 -0
  57. package/esm2015/model/productGroupLayout.js +2 -0
  58. package/esm2015/model/productLayout.js +2 -0
  59. package/esm2015/model/renderTask.js +2 -0
  60. package/esm2015/model/schemaError.js +13 -0
  61. package/esm2015/model/serviceName.js +29 -0
  62. package/esm2015/model/tracedata.js +2 -0
  63. package/esm2015/model/unpackedItems.js +13 -0
  64. package/esm2015/model/validateResult.js +2 -0
  65. package/esm2015/model/versionResult.js +13 -0
  66. package/esm2015/variables.js +9 -0
  67. package/esm2015/veeroute-lss-packer-angular.js +5 -0
  68. package/fesm2015/veeroute-lss-packer-angular.js +1114 -0
  69. package/fesm2015/veeroute-lss-packer-angular.js.map +1 -0
  70. package/index.d.ts +5 -0
  71. package/model/calculationAsyncResult.d.ts +22 -0
  72. package/model/calculationInfo.d.ts +30 -0
  73. package/model/calculationSettings.d.ts +32 -0
  74. package/model/calculationState.d.ts +24 -0
  75. package/model/calculationStatus.d.ts +23 -0
  76. package/model/checkResult.d.ts +20 -0
  77. package/model/coordinates.d.ts +28 -0
  78. package/model/dimensions.d.ts +32 -0
  79. package/model/entityError.d.ts +27 -0
  80. package/model/entityErrorType.d.ts +18 -0
  81. package/model/entityPath.d.ts +23 -0
  82. package/model/entityType.d.ts +20 -0
  83. package/model/entityValidation.d.ts +27 -0
  84. package/model/entityValidationType.d.ts +17 -0
  85. package/model/inlineResponse400.d.ts +37 -0
  86. package/model/inlineResponse401.d.ts +22 -0
  87. package/model/inlineResponse402.d.ts +22 -0
  88. package/model/inlineResponse403.d.ts +22 -0
  89. package/model/inlineResponse404.d.ts +22 -0
  90. package/model/inlineResponse404Detail.d.ts +18 -0
  91. package/model/inlineResponse429.d.ts +22 -0
  92. package/model/inlineResponse500.d.ts +22 -0
  93. package/model/models.d.ts +39 -0
  94. package/model/packResult.d.ts +38 -0
  95. package/model/packSettings.d.ts +18 -0
  96. package/model/packStatistics.d.ts +40 -0
  97. package/model/packTask.d.ts +28 -0
  98. package/model/package.d.ts +31 -0
  99. package/model/packageLayout.d.ts +33 -0
  100. package/model/packageType.d.ts +19 -0
  101. package/model/product.d.ts +38 -0
  102. package/model/productGroupLayout.d.ts +29 -0
  103. package/model/productLayout.d.ts +24 -0
  104. package/model/renderTask.d.ts +31 -0
  105. package/model/schemaError.d.ts +24 -0
  106. package/model/serviceName.d.ts +26 -0
  107. package/model/tracedata.d.ts +38 -0
  108. package/model/unpackedItems.d.ts +24 -0
  109. package/model/validateResult.d.ts +23 -0
  110. package/model/versionResult.d.ts +28 -0
  111. package/package.json +27 -0
  112. package/variables.d.ts +8 -0
  113. package/veeroute-lss-packer-angular.d.ts +4 -0
  114. package/veeroute-lss-packer-angular.metadata.json +1 -0
@@ -0,0 +1,32 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * Overall dimensions (L-W-H) and weight.
14
+ */
15
+ export interface DimensionsPacker {
16
+ /**
17
+ * Length in millimeters.
18
+ */
19
+ length: number;
20
+ /**
21
+ * Width in millimeters.
22
+ */
23
+ width: number;
24
+ /**
25
+ * Height in millimeters.
26
+ */
27
+ height: number;
28
+ /**
29
+ * Weight in grams.
30
+ */
31
+ mass: number;
32
+ }
@@ -0,0 +1,27 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { EntityPathPacker } from './entityPath';
13
+ import { EntityErrorTypePacker } from './entityErrorType';
14
+ /**
15
+ * Description of the error in the input data.
16
+ */
17
+ export interface EntityErrorPacker {
18
+ type: EntityErrorTypePacker;
19
+ /**
20
+ * Information about error.
21
+ */
22
+ info?: string | null;
23
+ /**
24
+ * List of entities related to error.
25
+ */
26
+ entities: Array<EntityPathPacker>;
27
+ }
@@ -0,0 +1,18 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * Error type: * `UNIQUE_IDS_VIOLATION` - all keys must be unique * `INCONSISTENT_REFERENCE` - bad reference key
14
+ */
15
+ export declare enum EntityErrorTypePacker {
16
+ UNIQUE_IDS_VIOLATION = "UNIQUE_IDS_VIOLATION",
17
+ INCONSISTENT_REFERENCE = "INCONSISTENT_REFERENCE"
18
+ }
@@ -0,0 +1,23 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { EntityTypePacker } from './entityType';
13
+ /**
14
+ * The description of the entity and the path to it.
15
+ */
16
+ export interface EntityPathPacker {
17
+ /**
18
+ * Target entity key.
19
+ */
20
+ entity_key: string | null;
21
+ entity_type: EntityTypePacker;
22
+ child_entity?: EntityPathPacker | null;
23
+ }
@@ -0,0 +1,20 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * Entity type.
14
+ */
15
+ export declare enum EntityTypePacker {
16
+ TASK = "TASK",
17
+ SETTINGS = "SETTINGS",
18
+ PRODUCT = "PRODUCT",
19
+ PACKAGE = "PACKAGE"
20
+ }
@@ -0,0 +1,27 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { EntityValidationTypePacker } from './entityValidationType';
13
+ import { EntityPathPacker } from './entityPath';
14
+ /**
15
+ * Description of the validation of the input data.
16
+ */
17
+ export interface EntityValidationPacker {
18
+ type: EntityValidationTypePacker;
19
+ /**
20
+ * Information about validation.
21
+ */
22
+ info?: string | null;
23
+ /**
24
+ * List of entities related to validation.
25
+ */
26
+ entities: Array<EntityPathPacker>;
27
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * Validation type: * `NO_COMPATIBLE_PACKAGE` - product does not fit into any package
14
+ */
15
+ export declare enum EntityValidationTypePacker {
16
+ NO_COMPATIBLE_PACKAGE = "NO_COMPATIBLE_PACKAGE"
17
+ }
@@ -0,0 +1,37 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { SchemaErrorPacker } from './schemaError';
13
+ import { EntityValidationPacker } from './entityValidation';
14
+ import { TracedataPacker } from './tracedata';
15
+ import { EntityErrorPacker } from './entityError';
16
+ /**
17
+ * Error details.
18
+ */
19
+ export interface InlineResponse400Packer {
20
+ tracedata: TracedataPacker;
21
+ /**
22
+ * Error message.
23
+ */
24
+ message?: string | null;
25
+ /**
26
+ * Errors list.
27
+ */
28
+ schema_errors?: Array<SchemaErrorPacker>;
29
+ /**
30
+ * List with fatal errors.
31
+ */
32
+ logical_errors?: Array<EntityErrorPacker>;
33
+ /**
34
+ * Validation list.
35
+ */
36
+ validations?: Array<EntityValidationPacker>;
37
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { TracedataPacker } from './tracedata';
13
+ /**
14
+ * Error details.
15
+ */
16
+ export interface InlineResponse401Packer {
17
+ tracedata: TracedataPacker;
18
+ /**
19
+ * Error message.
20
+ */
21
+ message?: string | null;
22
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { TracedataPacker } from './tracedata';
13
+ /**
14
+ * Error details.
15
+ */
16
+ export interface InlineResponse402Packer {
17
+ tracedata: TracedataPacker;
18
+ /**
19
+ * Error message.
20
+ */
21
+ message?: string | null;
22
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { TracedataPacker } from './tracedata';
13
+ /**
14
+ * Error details.
15
+ */
16
+ export interface InlineResponse403Packer {
17
+ tracedata: TracedataPacker;
18
+ /**
19
+ * Error message.
20
+ */
21
+ message?: string | null;
22
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { InlineResponse404DetailPacker } from './inlineResponse404Detail';
13
+ /**
14
+ * Error details.
15
+ */
16
+ export interface InlineResponse404Packer {
17
+ /**
18
+ * Resource identifier.
19
+ */
20
+ resource_id?: string | null;
21
+ detail?: InlineResponse404DetailPacker | null;
22
+ }
@@ -0,0 +1,18 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { TracedataPacker } from './tracedata';
13
+ /**
14
+ * Resource details.
15
+ */
16
+ export interface InlineResponse404DetailPacker {
17
+ tracedata: TracedataPacker;
18
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { TracedataPacker } from './tracedata';
13
+ /**
14
+ * Error details.
15
+ */
16
+ export interface InlineResponse429Packer {
17
+ tracedata: TracedataPacker;
18
+ /**
19
+ * Error Message.
20
+ */
21
+ message?: string | null;
22
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { TracedataPacker } from './tracedata';
13
+ /**
14
+ * Error details.
15
+ */
16
+ export interface InlineResponse500Packer {
17
+ tracedata: TracedataPacker;
18
+ /**
19
+ * Error message.
20
+ */
21
+ message?: string | null;
22
+ }
@@ -0,0 +1,39 @@
1
+ export * from './calculationAsyncResult';
2
+ export * from './calculationInfo';
3
+ export * from './calculationSettings';
4
+ export * from './calculationState';
5
+ export * from './calculationStatus';
6
+ export * from './checkResult';
7
+ export * from './coordinates';
8
+ export * from './dimensions';
9
+ export * from './entityError';
10
+ export * from './entityErrorType';
11
+ export * from './entityPath';
12
+ export * from './entityType';
13
+ export * from './entityValidation';
14
+ export * from './entityValidationType';
15
+ export * from './inlineResponse400';
16
+ export * from './inlineResponse401';
17
+ export * from './inlineResponse402';
18
+ export * from './inlineResponse403';
19
+ export * from './inlineResponse404Detail';
20
+ export * from './inlineResponse404';
21
+ export * from './inlineResponse429';
22
+ export * from './inlineResponse500';
23
+ export * from './packResult';
24
+ export * from './packSettings';
25
+ export * from './packStatistics';
26
+ export * from './packTask';
27
+ export * from './packageLayout';
28
+ export * from './package';
29
+ export * from './packageType';
30
+ export * from './productGroupLayout';
31
+ export * from './productLayout';
32
+ export * from './product';
33
+ export * from './renderTask';
34
+ export * from './schemaError';
35
+ export * from './serviceName';
36
+ export * from './tracedata';
37
+ export * from './unpackedItems';
38
+ export * from './validateResult';
39
+ export * from './versionResult';
@@ -0,0 +1,38 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { EntityValidationPacker } from './entityValidation';
13
+ import { TracedataPacker } from './tracedata';
14
+ import { PackStatisticsPacker } from './packStatistics';
15
+ import { CalculationInfoPacker } from './calculationInfo';
16
+ import { UnpackedItemsPacker } from './unpackedItems';
17
+ import { PackageLayoutPacker } from './packageLayout';
18
+ /**
19
+ * Packing result.
20
+ */
21
+ export interface PackResultPacker {
22
+ tracedata: TracedataPacker;
23
+ /**
24
+ * A product layout plan as a list of packaging locations. The first level contains a list of pallet stacks.
25
+ */
26
+ blueprint: Array<PackageLayoutPacker>;
27
+ statistics: PackStatisticsPacker;
28
+ /**
29
+ * Validation list.
30
+ */
31
+ validations?: Array<EntityValidationPacker>;
32
+ unpacked_items?: UnpackedItemsPacker;
33
+ /**
34
+ * Calculation progress as a percentage. The progress displays the current number of completed steps.
35
+ */
36
+ progress: number;
37
+ info: CalculationInfoPacker;
38
+ }
@@ -0,0 +1,18 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { CalculationSettingsPacker } from './calculationSettings';
13
+ /**
14
+ * Packing settings.
15
+ */
16
+ export interface PackSettingsPacker {
17
+ calculation_settings?: CalculationSettingsPacker;
18
+ }
@@ -0,0 +1,40 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * General statistics for packing scheme.
14
+ */
15
+ export interface PackStatisticsPacker {
16
+ /**
17
+ * The total number of products.
18
+ */
19
+ products_count: number;
20
+ /**
21
+ * The total number of packages.
22
+ */
23
+ packages_count: number;
24
+ /**
25
+ * Total weight in kilograms.
26
+ */
27
+ total_mass: number;
28
+ /**
29
+ * The total volume of all packed goods in cubic meters.
30
+ */
31
+ total_volume: number;
32
+ /**
33
+ * Average utilization by mass (in percent) - the ratio of the loaded mass to the maximum possible.
34
+ */
35
+ average_utilization_by_mass: number;
36
+ /**
37
+ * Average utilization by volume (in percent) - the ratio of the loaded volume to the maximum possible.
38
+ */
39
+ average_utilization_by_volume: number;
40
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * VRt.Packer [PC]
3
+ * Veeroute Packer API. # Description The service is designed to calculate the placement of goods inside specified packages. ## Package types ### Pallet ![pallet](../images/packer_pallet.svg) *Mono pallet* If a pallet is fully equipped with the same product, then such a pallet is called mono-pallet, mono-pallet loading rules: 1. The maximum permissible height of the pallet with the goods laid on it: 1800 mm 1. Maximum permissible weight of the loaded pallet: 650 kg 1. Packages of goods may only be stacked parallel to the pallet walls. 1. It is allowed to rotate packages around the vertical Z axis and only at right angles. 1. To level the height between positions (for placing another pallet on top), empty spaces can be added to the stacking in layers. *Zoned pallet* After the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet, which is divided into zones by means of a cardboard partition in such a way that only one article is placed in each zone, the zones have the following restrictions: 1. Zones are rectangular. 1. The ratio between the sides of the zones can be any. 1. One side of any zone is always in contact with the edge of the pallet. 1. Allowable number of zones on a pallet: from 2 to 6. 1. Each zone is filled according to the rules for filling a mono-pallet. 1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet. 1. It is allowed to form pallets with different stacking heights for different positions (the difference in heights is more than 50 mm), if these are the top pallets in a stack. ### Mix box ![mixbox](../images/packer_mixbox.svg) If the steps above fail to place the item in this way, so that the pallet has the required height or weight, mix boxes are used: 1. Mix boxes can only be placed in one layer. 1. In one mix-box there can be different goods, in this case it is divided by partitions similarly to the pallet (the only difference is that the height of the packed goods is not aligned). 1. Mix boxes can be mixed with items on one pallet. 1. One product can be packed in different mix boxes. ### Slot ![slot](../images/packer_slot.svg) Loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed. The slot has no physical body - so the dimensions of the `body` of the slot are zero. ## Coordinate system ![coordinates](../images/packer_coordinates.svg) The local coordinate system is used to indicate the location of packages and goods, in which the coordinates of a particular object are indicated relative to the near-left lower corner of the parent object, while: * Horizontal plane - **X**, **Y** axes * Vertical - **Z** axis ## Entity relationship diagram ![erd](../uml/packer.svg)
4
+ *
5
+ * The version of the OpenAPI document: 4.7.1599
6
+ * Contact: servicedesk@veeroute.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PackSettingsPacker } from './packSettings';
13
+ import { PackagePacker } from './package';
14
+ import { ProductPacker } from './product';
15
+ /**
16
+ * Initial task.
17
+ */
18
+ export interface PackTaskPacker {
19
+ /**
20
+ * List of products.
21
+ */
22
+ products: Array<ProductPacker>;
23
+ /**
24
+ * List of packages. It is obligatory to have at least one package of each type (SLOT, PALLET, MIXBOX).
25
+ */
26
+ packages: Array<PackagePacker>;
27
+ pack_settings?: PackSettingsPacker;
28
+ }