@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.
- package/README.md +3 -3
- package/api/planService.d.ts +38 -16
- package/api/planServiceInterface.d.ts +23 -12
- package/api/systemServiceInterface.d.ts +1 -1
- package/api.base.service.d.ts +1 -1
- package/cfg/process_types.json +6 -0
- package/esm2022/api/planService.mjs +63 -18
- package/esm2022/api/planServiceInterface.mjs +1 -1
- package/esm2022/api/systemService.mjs +2 -2
- package/esm2022/api/systemServiceInterface.mjs +1 -1
- package/esm2022/api.base.service.mjs +2 -2
- package/esm2022/model/agro400WithErrorsAndWarnings.mjs +2 -0
- package/esm2022/model/agroEntityError.mjs +2 -0
- package/esm2022/model/agroEntityErrorType.mjs +23 -0
- package/esm2022/model/agroEntityPath.mjs +2 -0
- package/esm2022/model/agroEntityType.mjs +31 -0
- package/esm2022/model/agroEntityWarning.mjs +2 -0
- package/esm2022/model/agroEntityWarningType.mjs +19 -0
- package/esm2022/model/agroPlanResult.mjs +2 -0
- package/esm2022/model/agroPlanSettings.mjs +2 -0
- package/esm2022/model/agroPlanStatistics.mjs +11 -0
- package/esm2022/model/agroPlanTask.mjs +2 -0
- package/esm2022/model/agroUnplannedItems.mjs +11 -0
- package/esm2022/model/agroValidateResult.mjs +2 -0
- package/esm2022/model/attribute.mjs +2 -2
- package/esm2022/model/bunker.mjs +1 -1
- package/esm2022/model/calculationAsyncResult.mjs +1 -1
- package/esm2022/model/calculationInfo.mjs +1 -1
- package/esm2022/model/calculationSettings.mjs +2 -2
- package/esm2022/model/calculationState.mjs +1 -1
- package/esm2022/model/calculationStatus.mjs +2 -2
- package/esm2022/model/capacityForecastElement.mjs +1 -1
- package/esm2022/model/chamber.mjs +1 -1
- package/esm2022/model/checkResult.mjs +2 -2
- package/esm2022/model/consumer.mjs +1 -1
- package/esm2022/model/contract.mjs +1 -1
- package/esm2022/model/contractType.mjs +2 -2
- package/esm2022/model/costForecastElement.mjs +1 -1
- package/esm2022/model/crop.mjs +1 -1
- package/esm2022/model/cropType.mjs +2 -2
- package/esm2022/model/dateWindow.mjs +2 -2
- package/esm2022/model/dryer.mjs +1 -1
- package/esm2022/model/elevator.mjs +1 -1
- package/esm2022/model/factory.mjs +1 -1
- package/esm2022/model/field.mjs +1 -1
- package/esm2022/model/flowType.mjs +18 -0
- package/esm2022/model/gate.mjs +1 -1
- package/esm2022/model/general400.mjs +2 -0
- package/esm2022/model/general402.mjs +1 -1
- package/esm2022/model/general403.mjs +2 -0
- package/esm2022/model/general404.mjs +1 -1
- package/esm2022/model/general404Detail.mjs +1 -1
- package/esm2022/model/general429.mjs +1 -1
- package/esm2022/model/general500.mjs +1 -1
- package/esm2022/model/humidityForecastElement.mjs +1 -1
- package/esm2022/model/leftover.mjs +2 -2
- package/esm2022/model/manufacturingOperation.mjs +1 -1
- package/esm2022/model/market.mjs +1 -1
- package/esm2022/model/models.mjs +17 -14
- package/esm2022/model/movementMatrixElement.mjs +2 -2
- package/esm2022/model/objectType.mjs +2 -2
- package/esm2022/model/operationMeasurements.mjs +2 -2
- package/esm2022/model/operationTarget.mjs +1 -1
- package/esm2022/model/operationType.mjs +2 -2
- package/esm2022/model/priceForecastElement.mjs +1 -1
- package/esm2022/model/pricelist.mjs +1 -1
- package/esm2022/model/productivityForecastElement.mjs +1 -1
- package/esm2022/model/projectConfiguration.mjs +2 -2
- package/esm2022/model/projectSettings.mjs +1 -1
- package/esm2022/model/schemaError.mjs +2 -2
- package/esm2022/model/service.mjs +2 -2
- package/esm2022/model/silo.mjs +1 -1
- package/esm2022/model/stockForecastElement.mjs +1 -1
- package/esm2022/model/storage.mjs +1 -1
- package/esm2022/model/tracedata.mjs +1 -1
- package/esm2022/model/versionResult.mjs +2 -2
- package/fesm2022/veeroute-lss-agro-angular.mjs +181 -118
- package/fesm2022/veeroute-lss-agro-angular.mjs.map +1 -1
- package/model/{custom400WithErrorsAndWarnings.d.ts → agro400WithErrorsAndWarnings.d.ts} +6 -6
- package/model/{entityError.d.ts → agroEntityError.d.ts} +6 -6
- package/model/{entityErrorType.d.ts → agroEntityErrorType.d.ts} +2 -2
- package/model/{entityPath.d.ts → agroEntityPath.d.ts} +5 -5
- package/model/{entityType.d.ts → agroEntityType.d.ts} +2 -2
- package/model/{entityWarning.d.ts → agroEntityWarning.d.ts} +6 -6
- package/model/{entityWarningType.d.ts → agroEntityWarningType.d.ts} +2 -2
- package/model/{planResult.d.ts → agroPlanResult.d.ts} +8 -8
- package/model/{planSettings.d.ts → agroPlanSettings.d.ts} +2 -2
- package/model/{planStatistics.d.ts → agroPlanStatistics.d.ts} +2 -2
- package/model/{planTask.d.ts → agroPlanTask.d.ts} +4 -4
- package/model/{unplannedItems.d.ts → agroUnplannedItems.d.ts} +2 -2
- package/model/{validateResult.d.ts → agroValidateResult.d.ts} +4 -4
- package/model/attribute.d.ts +1 -1
- package/model/bunker.d.ts +1 -1
- package/model/calculationAsyncResult.d.ts +1 -1
- package/model/calculationInfo.d.ts +1 -1
- package/model/calculationSettings.d.ts +1 -1
- package/model/calculationState.d.ts +1 -1
- package/model/calculationStatus.d.ts +1 -1
- package/model/capacityForecastElement.d.ts +1 -1
- package/model/chamber.d.ts +1 -1
- package/model/checkResult.d.ts +1 -1
- package/model/consumer.d.ts +1 -1
- package/model/contract.d.ts +1 -1
- package/model/contractType.d.ts +1 -1
- package/model/costForecastElement.d.ts +1 -1
- package/model/crop.d.ts +1 -1
- package/model/cropType.d.ts +1 -1
- package/model/dateWindow.d.ts +1 -1
- package/model/dryer.d.ts +1 -1
- package/model/elevator.d.ts +1 -1
- package/model/factory.d.ts +4 -4
- package/model/field.d.ts +1 -1
- package/model/flowType.d.ts +16 -0
- package/model/gate.d.ts +1 -1
- package/model/general400.d.ts +26 -0
- package/model/general402.d.ts +1 -1
- package/model/general403.d.ts +21 -0
- package/model/general404.d.ts +1 -1
- package/model/general404Detail.d.ts +1 -1
- package/model/general429.d.ts +1 -1
- package/model/general500.d.ts +1 -1
- package/model/humidityForecastElement.d.ts +1 -1
- package/model/leftover.d.ts +1 -1
- package/model/manufacturingOperation.d.ts +1 -1
- package/model/market.d.ts +1 -1
- package/model/models.d.ts +16 -13
- package/model/movementMatrixElement.d.ts +1 -1
- package/model/objectType.d.ts +1 -1
- package/model/operationMeasurements.d.ts +1 -1
- package/model/operationTarget.d.ts +1 -1
- package/model/operationType.d.ts +1 -1
- package/model/priceForecastElement.d.ts +1 -1
- package/model/pricelist.d.ts +1 -1
- package/model/productivityForecastElement.d.ts +1 -1
- package/model/projectConfiguration.d.ts +1 -1
- package/model/projectSettings.d.ts +1 -1
- package/model/schemaError.d.ts +1 -1
- package/model/service.d.ts +1 -1
- package/model/silo.d.ts +1 -1
- package/model/stockForecastElement.d.ts +1 -1
- package/model/storage.d.ts +1 -1
- package/model/tracedata.d.ts +1 -1
- package/model/versionResult.d.ts +1 -1
- package/package.json +1 -1
- package/esm2022/model/custom400WithErrorsAndWarnings.mjs +0 -2
- package/esm2022/model/entityError.mjs +0 -2
- package/esm2022/model/entityErrorType.mjs +0 -23
- package/esm2022/model/entityPath.mjs +0 -2
- package/esm2022/model/entityType.mjs +0 -31
- package/esm2022/model/entityWarning.mjs +0 -2
- package/esm2022/model/entityWarningType.mjs +0 -19
- package/esm2022/model/planResult.mjs +0 -2
- package/esm2022/model/planSettings.mjs +0 -2
- package/esm2022/model/planStatistics.mjs +0 -11
- package/esm2022/model/planTask.mjs +0 -2
- package/esm2022/model/unplannedItems.mjs +0 -11
- 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.
|
|
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 {
|
|
11
|
-
import {
|
|
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
|
|
15
|
+
export interface AgroEntityErrorAgro {
|
|
16
16
|
[key: string]: any | any;
|
|
17
|
-
type:
|
|
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<
|
|
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.
|
|
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
|
|
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.
|
|
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 {
|
|
10
|
+
import { AgroEntityTypeAgro } from './agroEntityType';
|
|
11
11
|
/**
|
|
12
12
|
* The description of the entity and the path to it.
|
|
13
13
|
*/
|
|
14
|
-
export interface
|
|
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:
|
|
21
|
-
child_entity?:
|
|
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.
|
|
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
|
|
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.
|
|
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 {
|
|
11
|
-
import {
|
|
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
|
|
15
|
+
export interface AgroEntityWarningAgro {
|
|
16
16
|
[key: string]: any | any;
|
|
17
|
-
type:
|
|
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<
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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:
|
|
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<
|
|
31
|
-
unplanned_items?:
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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 {
|
|
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
|
|
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:
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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<
|
|
21
|
+
warnings: Array<AgroEntityWarningAgro>;
|
|
22
22
|
}
|
package/model/attribute.d.ts
CHANGED
package/model/bunker.d.ts
CHANGED
package/model/chamber.d.ts
CHANGED
package/model/checkResult.d.ts
CHANGED
package/model/consumer.d.ts
CHANGED
package/model/contract.d.ts
CHANGED
package/model/contractType.d.ts
CHANGED
package/model/crop.d.ts
CHANGED
package/model/cropType.d.ts
CHANGED
package/model/dateWindow.d.ts
CHANGED
package/model/dryer.d.ts
CHANGED
package/model/elevator.d.ts
CHANGED
package/model/factory.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* VRt.Agro [AG]
|
|
3
3
|
*
|
|
4
|
-
* The version of the OpenAPI document: 7.
|
|
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
|
-
*
|
|
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
|
|
37
|
+
* List of consumers who process grain.
|
|
38
38
|
*/
|
|
39
39
|
consumers: Array<ConsumerAgro>;
|
|
40
40
|
/**
|
package/model/field.d.ts
CHANGED
|
@@ -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
|
@@ -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
|
+
}
|
package/model/general402.d.ts
CHANGED
|
@@ -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
|
+
}
|
package/model/general404.d.ts
CHANGED