@veeroute/lss-agro-angular 7.29.3120 → 7.31.3182

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 (157) hide show
  1. package/README.md +3 -3
  2. package/api/planService.d.ts +38 -16
  3. package/api/planServiceInterface.d.ts +23 -12
  4. package/api/systemServiceInterface.d.ts +1 -1
  5. package/api.base.service.d.ts +1 -1
  6. package/cfg/process_types.json +6 -0
  7. package/esm2022/api/planService.mjs +63 -18
  8. package/esm2022/api/planServiceInterface.mjs +1 -1
  9. package/esm2022/api/systemService.mjs +2 -2
  10. package/esm2022/api/systemServiceInterface.mjs +1 -1
  11. package/esm2022/api.base.service.mjs +2 -2
  12. package/esm2022/model/agro400WithErrorsAndWarnings.mjs +2 -0
  13. package/esm2022/model/agroEntityError.mjs +2 -0
  14. package/esm2022/model/agroEntityErrorType.mjs +23 -0
  15. package/esm2022/model/agroEntityPath.mjs +2 -0
  16. package/esm2022/model/agroEntityType.mjs +31 -0
  17. package/esm2022/model/agroEntityWarning.mjs +2 -0
  18. package/esm2022/model/agroEntityWarningType.mjs +19 -0
  19. package/esm2022/model/agroPlanResult.mjs +2 -0
  20. package/esm2022/model/agroPlanSettings.mjs +2 -0
  21. package/esm2022/model/agroPlanStatistics.mjs +11 -0
  22. package/esm2022/model/agroPlanTask.mjs +2 -0
  23. package/esm2022/model/agroUnplannedItems.mjs +11 -0
  24. package/esm2022/model/agroValidateResult.mjs +2 -0
  25. package/esm2022/model/attribute.mjs +2 -2
  26. package/esm2022/model/bunker.mjs +1 -1
  27. package/esm2022/model/calculationAsyncResult.mjs +1 -1
  28. package/esm2022/model/calculationInfo.mjs +1 -1
  29. package/esm2022/model/calculationSettings.mjs +2 -2
  30. package/esm2022/model/calculationState.mjs +1 -1
  31. package/esm2022/model/calculationStatus.mjs +2 -2
  32. package/esm2022/model/capacityForecastElement.mjs +1 -1
  33. package/esm2022/model/chamber.mjs +1 -1
  34. package/esm2022/model/checkResult.mjs +2 -2
  35. package/esm2022/model/consumer.mjs +1 -1
  36. package/esm2022/model/contract.mjs +1 -1
  37. package/esm2022/model/contractType.mjs +2 -2
  38. package/esm2022/model/costForecastElement.mjs +1 -1
  39. package/esm2022/model/crop.mjs +1 -1
  40. package/esm2022/model/cropType.mjs +2 -2
  41. package/esm2022/model/dateWindow.mjs +2 -2
  42. package/esm2022/model/dryer.mjs +1 -1
  43. package/esm2022/model/elevator.mjs +1 -1
  44. package/esm2022/model/factory.mjs +1 -1
  45. package/esm2022/model/field.mjs +1 -1
  46. package/esm2022/model/flowType.mjs +18 -0
  47. package/esm2022/model/gate.mjs +1 -1
  48. package/esm2022/model/general400.mjs +2 -0
  49. package/esm2022/model/general402.mjs +1 -1
  50. package/esm2022/model/general403.mjs +2 -0
  51. package/esm2022/model/general404.mjs +1 -1
  52. package/esm2022/model/general404Detail.mjs +1 -1
  53. package/esm2022/model/general429.mjs +1 -1
  54. package/esm2022/model/general500.mjs +1 -1
  55. package/esm2022/model/humidityForecastElement.mjs +1 -1
  56. package/esm2022/model/leftover.mjs +2 -2
  57. package/esm2022/model/manufacturingOperation.mjs +1 -1
  58. package/esm2022/model/market.mjs +1 -1
  59. package/esm2022/model/models.mjs +17 -14
  60. package/esm2022/model/movementMatrixElement.mjs +2 -2
  61. package/esm2022/model/objectType.mjs +2 -2
  62. package/esm2022/model/operationMeasurements.mjs +2 -2
  63. package/esm2022/model/operationTarget.mjs +1 -1
  64. package/esm2022/model/operationType.mjs +2 -2
  65. package/esm2022/model/priceForecastElement.mjs +1 -1
  66. package/esm2022/model/pricelist.mjs +1 -1
  67. package/esm2022/model/productivityForecastElement.mjs +1 -1
  68. package/esm2022/model/projectConfiguration.mjs +2 -2
  69. package/esm2022/model/projectSettings.mjs +1 -1
  70. package/esm2022/model/schemaError.mjs +2 -2
  71. package/esm2022/model/service.mjs +2 -2
  72. package/esm2022/model/silo.mjs +1 -1
  73. package/esm2022/model/stockForecastElement.mjs +1 -1
  74. package/esm2022/model/storage.mjs +1 -1
  75. package/esm2022/model/tracedata.mjs +1 -1
  76. package/esm2022/model/versionResult.mjs +2 -2
  77. package/fesm2022/veeroute-lss-agro-angular.mjs +181 -118
  78. package/fesm2022/veeroute-lss-agro-angular.mjs.map +1 -1
  79. package/model/{custom400WithErrorsAndWarnings.d.ts → agro400WithErrorsAndWarnings.d.ts} +6 -6
  80. package/model/{entityError.d.ts → agroEntityError.d.ts} +6 -6
  81. package/model/{entityErrorType.d.ts → agroEntityErrorType.d.ts} +2 -2
  82. package/model/{entityPath.d.ts → agroEntityPath.d.ts} +5 -5
  83. package/model/{entityType.d.ts → agroEntityType.d.ts} +2 -2
  84. package/model/{entityWarning.d.ts → agroEntityWarning.d.ts} +6 -6
  85. package/model/{entityWarningType.d.ts → agroEntityWarningType.d.ts} +2 -2
  86. package/model/{planResult.d.ts → agroPlanResult.d.ts} +8 -8
  87. package/model/{planSettings.d.ts → agroPlanSettings.d.ts} +2 -2
  88. package/model/{planStatistics.d.ts → agroPlanStatistics.d.ts} +2 -2
  89. package/model/{planTask.d.ts → agroPlanTask.d.ts} +4 -4
  90. package/model/{unplannedItems.d.ts → agroUnplannedItems.d.ts} +2 -2
  91. package/model/{validateResult.d.ts → agroValidateResult.d.ts} +4 -4
  92. package/model/attribute.d.ts +1 -1
  93. package/model/bunker.d.ts +1 -1
  94. package/model/calculationAsyncResult.d.ts +1 -1
  95. package/model/calculationInfo.d.ts +1 -1
  96. package/model/calculationSettings.d.ts +1 -1
  97. package/model/calculationState.d.ts +1 -1
  98. package/model/calculationStatus.d.ts +1 -1
  99. package/model/capacityForecastElement.d.ts +1 -1
  100. package/model/chamber.d.ts +1 -1
  101. package/model/checkResult.d.ts +1 -1
  102. package/model/consumer.d.ts +1 -1
  103. package/model/contract.d.ts +1 -1
  104. package/model/contractType.d.ts +1 -1
  105. package/model/costForecastElement.d.ts +1 -1
  106. package/model/crop.d.ts +1 -1
  107. package/model/cropType.d.ts +1 -1
  108. package/model/dateWindow.d.ts +1 -1
  109. package/model/dryer.d.ts +1 -1
  110. package/model/elevator.d.ts +1 -1
  111. package/model/factory.d.ts +4 -4
  112. package/model/field.d.ts +1 -1
  113. package/model/flowType.d.ts +16 -0
  114. package/model/gate.d.ts +1 -1
  115. package/model/general400.d.ts +26 -0
  116. package/model/general402.d.ts +1 -1
  117. package/model/general403.d.ts +21 -0
  118. package/model/general404.d.ts +1 -1
  119. package/model/general404Detail.d.ts +1 -1
  120. package/model/general429.d.ts +1 -1
  121. package/model/general500.d.ts +1 -1
  122. package/model/humidityForecastElement.d.ts +1 -1
  123. package/model/leftover.d.ts +1 -1
  124. package/model/manufacturingOperation.d.ts +1 -1
  125. package/model/market.d.ts +1 -1
  126. package/model/models.d.ts +16 -13
  127. package/model/movementMatrixElement.d.ts +1 -1
  128. package/model/objectType.d.ts +1 -1
  129. package/model/operationMeasurements.d.ts +1 -1
  130. package/model/operationTarget.d.ts +1 -1
  131. package/model/operationType.d.ts +1 -1
  132. package/model/priceForecastElement.d.ts +1 -1
  133. package/model/pricelist.d.ts +1 -1
  134. package/model/productivityForecastElement.d.ts +1 -1
  135. package/model/projectConfiguration.d.ts +1 -1
  136. package/model/projectSettings.d.ts +1 -1
  137. package/model/schemaError.d.ts +1 -1
  138. package/model/service.d.ts +1 -1
  139. package/model/silo.d.ts +1 -1
  140. package/model/stockForecastElement.d.ts +1 -1
  141. package/model/storage.d.ts +1 -1
  142. package/model/tracedata.d.ts +1 -1
  143. package/model/versionResult.d.ts +1 -1
  144. package/package.json +1 -1
  145. package/esm2022/model/custom400WithErrorsAndWarnings.mjs +0 -2
  146. package/esm2022/model/entityError.mjs +0 -2
  147. package/esm2022/model/entityErrorType.mjs +0 -23
  148. package/esm2022/model/entityPath.mjs +0 -2
  149. package/esm2022/model/entityType.mjs +0 -31
  150. package/esm2022/model/entityWarning.mjs +0 -2
  151. package/esm2022/model/entityWarningType.mjs +0 -19
  152. package/esm2022/model/planResult.mjs +0 -2
  153. package/esm2022/model/planSettings.mjs +0 -2
  154. package/esm2022/model/planStatistics.mjs +0 -11
  155. package/esm2022/model/planTask.mjs +0 -2
  156. package/esm2022/model/unplannedItems.mjs +0 -11
  157. package/esm2022/model/validateResult.mjs +0 -2
@@ -1,20 +1,20 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
8
8
  * Do not edit the class manually.
9
9
  */
10
- import { EntityErrorTypeAgro } from './entityErrorType';
11
- import { EntityPathAgro } from './entityPath';
10
+ import { AgroEntityErrorTypeAgro } from './agroEntityErrorType';
11
+ import { AgroEntityPathAgro } from './agroEntityPath';
12
12
  /**
13
13
  * Description of the error in the input data.
14
14
  */
15
- export interface EntityErrorAgro {
15
+ export interface AgroEntityErrorAgro {
16
16
  [key: string]: any | any;
17
- type: EntityErrorTypeAgro;
17
+ type: AgroEntityErrorTypeAgro;
18
18
  /**
19
19
  * Information about error.
20
20
  */
@@ -22,5 +22,5 @@ export interface EntityErrorAgro {
22
22
  /**
23
23
  * List of entities related to error.
24
24
  */
25
- entities: Array<EntityPathAgro>;
25
+ entities: Array<AgroEntityPathAgro>;
26
26
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -10,7 +10,7 @@
10
10
  /**
11
11
  * Error type: * `UNIQUE_IDS_VIOLATION` - all keys must be unique * `INCONSISTENT_REFERENCE` - bad reference key * `INVALID_TIMELINE` - time window crossing * `INVALID_DATEWINDOW` - window ends before it starts * `INVALID_LEFTOVER_AMOUNT` - the amount of grain indicated in the balance exceeds the allowable size of the grain location (field, storage, silo, dryer, bunker) on the specified date * `INVALID_LEFTOVER_PER_ONE_TARGET` - more than one residue is specified for one grain location * `INVALID_CHAMBER_VARIANTS` - more than one chamber variant set for the same crop
12
12
  */
13
- export declare enum EntityErrorTypeAgro {
13
+ export declare enum AgroEntityErrorTypeAgro {
14
14
  UNIQUE_IDS_VIOLATION = "UNIQUE_IDS_VIOLATION",
15
15
  INCONSISTENT_REFERENCE = "INCONSISTENT_REFERENCE",
16
16
  INVALID_TIMELINE = "INVALID_TIMELINE",
@@ -1,22 +1,22 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
8
8
  * Do not edit the class manually.
9
9
  */
10
- import { EntityTypeAgro } from './entityType';
10
+ import { AgroEntityTypeAgro } from './agroEntityType';
11
11
  /**
12
12
  * The description of the entity and the path to it.
13
13
  */
14
- export interface EntityPathAgro {
14
+ export interface AgroEntityPathAgro {
15
15
  [key: string]: any | any;
16
16
  /**
17
17
  * Target entity key.
18
18
  */
19
19
  entity_key: string | null;
20
- entity_type: EntityTypeAgro;
21
- child_entity?: EntityPathAgro | null;
20
+ entity_type: AgroEntityTypeAgro;
21
+ child_entity?: AgroEntityPathAgro | null;
22
22
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -10,7 +10,7 @@
10
10
  /**
11
11
  * Entity type.
12
12
  */
13
- export declare enum EntityTypeAgro {
13
+ export declare enum AgroEntityTypeAgro {
14
14
  TASK = "TASK",
15
15
  SETTINGS = "SETTINGS",
16
16
  CROP = "CROP",
@@ -1,20 +1,20 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
8
8
  * Do not edit the class manually.
9
9
  */
10
- import { EntityWarningTypeAgro } from './entityWarningType';
11
- import { EntityPathAgro } from './entityPath';
10
+ import { AgroEntityPathAgro } from './agroEntityPath';
11
+ import { AgroEntityWarningTypeAgro } from './agroEntityWarningType';
12
12
  /**
13
13
  * Description of the validation of the input data.
14
14
  */
15
- export interface EntityWarningAgro {
15
+ export interface AgroEntityWarningAgro {
16
16
  [key: string]: any | any;
17
- type: EntityWarningTypeAgro;
17
+ type: AgroEntityWarningTypeAgro;
18
18
  /**
19
19
  * Information about warning.
20
20
  */
@@ -22,5 +22,5 @@ export interface EntityWarningAgro {
22
22
  /**
23
23
  * List of entities related to warning.
24
24
  */
25
- entities: Array<EntityPathAgro>;
25
+ entities: Array<AgroEntityPathAgro>;
26
26
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -10,7 +10,7 @@
10
10
  /**
11
11
  * Warning type: * `NO_COMPATIBLE_STORAGE` - no compatible storage locations * `NO_AVAILABLE_MOVEMENT` - the object is not in the movement matrix * `NO_AVAILABLE_CONSUMER` - there is no consumer for this type of culture
12
12
  */
13
- export declare enum EntityWarningTypeAgro {
13
+ export declare enum AgroEntityWarningTypeAgro {
14
14
  NO_COMPATIBLE_STORAGE = "NO_COMPATIBLE_STORAGE",
15
15
  NO_AVAILABLE_MOVEMENT = "NO_AVAILABLE_MOVEMENT",
16
16
  NO_AVAILABLE_CONSUMER = "NO_AVAILABLE_CONSUMER"
@@ -1,34 +1,34 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
8
8
  * Do not edit the class manually.
9
9
  */
10
+ import { AgroEntityWarningAgro } from './agroEntityWarning';
11
+ import { AgroUnplannedItemsAgro } from './agroUnplannedItems';
10
12
  import { TracedataAgro } from './tracedata';
11
- import { UnplannedItemsAgro } from './unplannedItems';
12
- import { PlanStatisticsAgro } from './planStatistics';
13
13
  import { ManufacturingOperationAgro } from './manufacturingOperation';
14
- import { EntityWarningAgro } from './entityWarning';
15
14
  import { CalculationInfoAgro } from './calculationInfo';
15
+ import { AgroPlanStatisticsAgro } from './agroPlanStatistics';
16
16
  /**
17
17
  * Planning result.
18
18
  */
19
- export interface PlanResultAgro {
19
+ export interface AgroPlanResultAgro {
20
20
  [key: string]: any | any;
21
21
  tracedata: TracedataAgro;
22
22
  /**
23
23
  * Production plan. The sequence of work.
24
24
  */
25
25
  project: Array<ManufacturingOperationAgro>;
26
- statistics: PlanStatisticsAgro;
26
+ statistics: AgroPlanStatisticsAgro;
27
27
  /**
28
28
  * List of warnings. Depending on the flag `calculation_settings.treat_warnings_as_errors` - triggered checks are interpreted as errors or result in the removal of incorrect data from the calculation.
29
29
  */
30
- warnings?: Array<EntityWarningAgro>;
31
- unplanned_items?: UnplannedItemsAgro;
30
+ warnings?: Array<AgroEntityWarningAgro>;
31
+ unplanned_items?: AgroUnplannedItemsAgro;
32
32
  /**
33
33
  * Calculation progress as a percentage. The progress displays the current number of completed steps.
34
34
  */
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -12,7 +12,7 @@ import { ProjectSettingsAgro } from './projectSettings';
12
12
  /**
13
13
  * Plan settings.
14
14
  */
15
- export interface PlanSettingsAgro {
15
+ export interface AgroPlanSettingsAgro {
16
16
  [key: string]: any | any;
17
17
  project_settings: ProjectSettingsAgro;
18
18
  calculation_settings?: CalculationSettingsAgro;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -10,7 +10,7 @@
10
10
  /**
11
11
  * General statistics.
12
12
  */
13
- export interface PlanStatisticsAgro {
13
+ export interface AgroPlanStatisticsAgro {
14
14
  [key: string]: any | any;
15
15
  /**
16
16
  * The number of planned fields.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -10,7 +10,7 @@
10
10
  import { LeftoverAgro } from './leftover';
11
11
  import { MovementMatrixElementAgro } from './movementMatrixElement';
12
12
  import { ElevatorAgro } from './elevator';
13
- import { PlanSettingsAgro } from './planSettings';
13
+ import { AgroPlanSettingsAgro } from './agroPlanSettings';
14
14
  import { CropAgro } from './crop';
15
15
  import { FactoryAgro } from './factory';
16
16
  import { MarketAgro } from './market';
@@ -18,7 +18,7 @@ import { FieldAgro } from './field';
18
18
  /**
19
19
  * Initial task.
20
20
  */
21
- export interface PlanTaskAgro {
21
+ export interface AgroPlanTaskAgro {
22
22
  [key: string]: any | any;
23
23
  /**
24
24
  * List of crops.
@@ -48,7 +48,7 @@ export interface PlanTaskAgro {
48
48
  * List of leftovers.
49
49
  */
50
50
  leftovers?: Array<LeftoverAgro>;
51
- plan_settings: PlanSettingsAgro;
51
+ plan_settings: AgroPlanSettingsAgro;
52
52
  /**
53
53
  * The name of the dataset. A technical field that does not affect calculation.
54
54
  */
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -10,7 +10,7 @@
10
10
  /**
11
11
  * Unplanned items list.
12
12
  */
13
- export interface UnplannedItemsAgro {
13
+ export interface AgroUnplannedItemsAgro {
14
14
  [key: string]: any | any;
15
15
  /**
16
16
  * Unplanned crop keys.
@@ -1,22 +1,22 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
8
8
  * Do not edit the class manually.
9
9
  */
10
+ import { AgroEntityWarningAgro } from './agroEntityWarning';
10
11
  import { TracedataAgro } from './tracedata';
11
- import { EntityWarningAgro } from './entityWarning';
12
12
  /**
13
13
  * Data validation result.
14
14
  */
15
- export interface ValidateResultAgro {
15
+ export interface AgroValidateResultAgro {
16
16
  [key: string]: any | any;
17
17
  tracedata: TracedataAgro;
18
18
  /**
19
19
  * List of warnings. Depending on the flag `calculation_settings.treat_warnings_as_errors` - triggered checks are interpreted as errors or result in the removal of incorrect data from the calculation.
20
20
  */
21
- warnings: Array<EntityWarningAgro>;
21
+ warnings: Array<AgroEntityWarningAgro>;
22
22
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
package/model/bunker.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
package/model/crop.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
package/model/dryer.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -22,7 +22,7 @@ export interface FactoryAgro {
22
22
  */
23
23
  key: string;
24
24
  /**
25
- * Gate.
25
+ * The gates and weighing station ensure the process of receiving and unloading grain.
26
26
  */
27
27
  gate: GateAgro;
28
28
  /**
@@ -30,11 +30,11 @@ export interface FactoryAgro {
30
30
  */
31
31
  dryers?: Array<DryerAgro>;
32
32
  /**
33
- * List of bunkers.
33
+ * List of bunkers - places for storing grain and a source for consumption.
34
34
  */
35
35
  bunkers: Array<BunkerAgro>;
36
36
  /**
37
- * List of consumption.
37
+ * List of consumers who process grain.
38
38
  */
39
39
  consumers: Array<ConsumerAgro>;
40
40
  /**
package/model/field.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -0,0 +1,16 @@
1
+ /**
2
+ * VRt.Agro [AG]
3
+ *
4
+ * The version of the OpenAPI document: 7.31.3182
5
+ * Contact: servicedesk@veeroute.com
6
+ *
7
+ * NOTE: This class is auto generated by OpenAPI Generator.
8
+ * Do not edit the class manually.
9
+ */
10
+ /**
11
+ * Data flow type.
12
+ */
13
+ export declare enum FlowTypeAgro {
14
+ INPUT = "INPUT",
15
+ OUTPUT = "OUTPUT"
16
+ }
package/model/gate.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -0,0 +1,26 @@
1
+ /**
2
+ * VRt.Agro [AG]
3
+ *
4
+ * The version of the OpenAPI document: 7.31.3182
5
+ * Contact: servicedesk@veeroute.com
6
+ *
7
+ * NOTE: This class is auto generated by OpenAPI Generator.
8
+ * Do not edit the class manually.
9
+ */
10
+ import { TracedataAgro } from './tracedata';
11
+ import { SchemaErrorAgro } from './schemaError';
12
+ /**
13
+ * Error details for 400 `Bad Request`.
14
+ */
15
+ export interface General400Agro {
16
+ [key: string]: any | any;
17
+ tracedata: TracedataAgro;
18
+ /**
19
+ * Error message.
20
+ */
21
+ message?: string | null;
22
+ /**
23
+ * List of syntax errors - data does not match the schema.
24
+ */
25
+ schema_errors?: Array<SchemaErrorAgro>;
26
+ }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -0,0 +1,21 @@
1
+ /**
2
+ * VRt.Agro [AG]
3
+ *
4
+ * The version of the OpenAPI document: 7.31.3182
5
+ * Contact: servicedesk@veeroute.com
6
+ *
7
+ * NOTE: This class is auto generated by OpenAPI Generator.
8
+ * Do not edit the class manually.
9
+ */
10
+ import { TracedataAgro } from './tracedata';
11
+ /**
12
+ * Error details for 403 `Forbidden`.
13
+ */
14
+ export interface General403Agro {
15
+ [key: string]: any | any;
16
+ tracedata: TracedataAgro;
17
+ /**
18
+ * Error message.
19
+ */
20
+ message?: string | null;
21
+ }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRt.Agro [AG]
3
3
  *
4
- * The version of the OpenAPI document: 7.29.3120
4
+ * The version of the OpenAPI document: 7.31.3182
5
5
  * Contact: servicedesk@veeroute.com
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator.