@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
@@ -178,7 +178,7 @@ class Configuration {
178
178
  /**
179
179
  * VRt.Agro [AG]
180
180
  *
181
- * The version of the OpenAPI document: 7.29.3120
181
+ * The version of the OpenAPI document: 7.31.3182
182
182
  * Contact: servicedesk@veeroute.com
183
183
  *
184
184
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -254,7 +254,7 @@ class BaseService {
254
254
  /**
255
255
  * VRt.Agro [AG]
256
256
  *
257
- * The version of the OpenAPI document: 7.29.3120
257
+ * The version of the OpenAPI document: 7.31.3182
258
258
  * Contact: servicedesk@veeroute.com
259
259
  *
260
260
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -347,6 +347,51 @@ class PlanService extends BaseService {
347
347
  reportProgress: reportProgress
348
348
  });
349
349
  }
350
+ readAlgoData(requestParameters, observe = 'body', reportProgress = false, options) {
351
+ const processCode = requestParameters?.processCode;
352
+ if (processCode === null || processCode === undefined) {
353
+ throw new Error('Required parameter processCode was null or undefined when calling readAlgoData.');
354
+ }
355
+ const dataFlowType = requestParameters?.dataFlowType;
356
+ let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
357
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, dataFlowType, 'data_flow_type');
358
+ let localVarHeaders = this.defaultHeaders;
359
+ // authentication (ApiKeyAuth) required
360
+ localVarHeaders = this.configuration.addCredentialToHeaders('ApiKeyAuth', 'Authorization', localVarHeaders, 'Bearer ');
361
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
362
+ 'application/octet-stream',
363
+ 'application/json'
364
+ ]);
365
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
366
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
367
+ }
368
+ const localVarHttpContext = options?.context ?? new HttpContext();
369
+ const localVarTransferCache = options?.transferCache ?? true;
370
+ let responseType_ = 'json';
371
+ if (localVarHttpHeaderAcceptSelected) {
372
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
373
+ responseType_ = 'text';
374
+ }
375
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
376
+ responseType_ = 'json';
377
+ }
378
+ else {
379
+ responseType_ = 'blob';
380
+ }
381
+ }
382
+ let localVarPath = `/agro/plan/data/${this.configuration.encodeParam({ name: "processCode", value: processCode, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
383
+ const { basePath, withCredentials } = this.configuration;
384
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
385
+ context: localVarHttpContext,
386
+ params: localVarQueryParameters,
387
+ responseType: responseType_,
388
+ ...(withCredentials ? { withCredentials } : {}),
389
+ headers: localVarHeaders,
390
+ observe: observe,
391
+ transferCache: localVarTransferCache,
392
+ reportProgress: reportProgress
393
+ });
394
+ }
350
395
  readPlanResult(requestParameters, observe = 'body', reportProgress = false, options) {
351
396
  const processCode = requestParameters?.processCode;
352
397
  if (processCode === null || processCode === undefined) {
@@ -428,9 +473,9 @@ class PlanService extends BaseService {
428
473
  });
429
474
  }
430
475
  runPlanCalculation(requestParameters, observe = 'body', reportProgress = false, options) {
431
- const planTaskAgro = requestParameters?.planTaskAgro;
432
- if (planTaskAgro === null || planTaskAgro === undefined) {
433
- throw new Error('Required parameter planTaskAgro was null or undefined when calling runPlanCalculation.');
476
+ const agroPlanTaskAgro = requestParameters?.agroPlanTaskAgro;
477
+ if (agroPlanTaskAgro === null || agroPlanTaskAgro === undefined) {
478
+ throw new Error('Required parameter agroPlanTaskAgro was null or undefined when calling runPlanCalculation.');
434
479
  }
435
480
  let localVarHeaders = this.defaultHeaders;
436
481
  // authentication (ApiKeyAuth) required
@@ -467,7 +512,7 @@ class PlanService extends BaseService {
467
512
  const { basePath, withCredentials } = this.configuration;
468
513
  return this.httpClient.request('post', `${basePath}${localVarPath}`, {
469
514
  context: localVarHttpContext,
470
- body: planTaskAgro,
515
+ body: agroPlanTaskAgro,
471
516
  responseType: responseType_,
472
517
  ...(withCredentials ? { withCredentials } : {}),
473
518
  headers: localVarHeaders,
@@ -477,9 +522,9 @@ class PlanService extends BaseService {
477
522
  });
478
523
  }
479
524
  runPlanCalculationAsync(requestParameters, observe = 'body', reportProgress = false, options) {
480
- const planTaskAgro = requestParameters?.planTaskAgro;
481
- if (planTaskAgro === null || planTaskAgro === undefined) {
482
- throw new Error('Required parameter planTaskAgro was null or undefined when calling runPlanCalculationAsync.');
525
+ const agroPlanTaskAgro = requestParameters?.agroPlanTaskAgro;
526
+ if (agroPlanTaskAgro === null || agroPlanTaskAgro === undefined) {
527
+ throw new Error('Required parameter agroPlanTaskAgro was null or undefined when calling runPlanCalculationAsync.');
483
528
  }
484
529
  let localVarHeaders = this.defaultHeaders;
485
530
  // authentication (ApiKeyAuth) required
@@ -516,7 +561,7 @@ class PlanService extends BaseService {
516
561
  const { basePath, withCredentials } = this.configuration;
517
562
  return this.httpClient.request('post', `${basePath}${localVarPath}`, {
518
563
  context: localVarHttpContext,
519
- body: planTaskAgro,
564
+ body: agroPlanTaskAgro,
520
565
  responseType: responseType_,
521
566
  ...(withCredentials ? { withCredentials } : {}),
522
567
  headers: localVarHeaders,
@@ -530,9 +575,9 @@ class PlanService extends BaseService {
530
575
  if (clipKey === null || clipKey === undefined) {
531
576
  throw new Error('Required parameter clipKey was null or undefined when calling runPlanClip.');
532
577
  }
533
- const planTaskAgro = requestParameters?.planTaskAgro;
534
- if (planTaskAgro === null || planTaskAgro === undefined) {
535
- throw new Error('Required parameter planTaskAgro was null or undefined when calling runPlanClip.');
578
+ const agroPlanTaskAgro = requestParameters?.agroPlanTaskAgro;
579
+ if (agroPlanTaskAgro === null || agroPlanTaskAgro === undefined) {
580
+ throw new Error('Required parameter agroPlanTaskAgro was null or undefined when calling runPlanClip.');
536
581
  }
537
582
  const clipStrategy = requestParameters?.clipStrategy;
538
583
  let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
@@ -572,7 +617,7 @@ class PlanService extends BaseService {
572
617
  const { basePath, withCredentials } = this.configuration;
573
618
  return this.httpClient.request('post', `${basePath}${localVarPath}`, {
574
619
  context: localVarHttpContext,
575
- body: planTaskAgro,
620
+ body: agroPlanTaskAgro,
576
621
  params: localVarQueryParameters,
577
622
  responseType: responseType_,
578
623
  ...(withCredentials ? { withCredentials } : {}),
@@ -583,9 +628,9 @@ class PlanService extends BaseService {
583
628
  });
584
629
  }
585
630
  runPlanValidation(requestParameters, observe = 'body', reportProgress = false, options) {
586
- const planTaskAgro = requestParameters?.planTaskAgro;
587
- if (planTaskAgro === null || planTaskAgro === undefined) {
588
- throw new Error('Required parameter planTaskAgro was null or undefined when calling runPlanValidation.');
631
+ const agroPlanTaskAgro = requestParameters?.agroPlanTaskAgro;
632
+ if (agroPlanTaskAgro === null || agroPlanTaskAgro === undefined) {
633
+ throw new Error('Required parameter agroPlanTaskAgro was null or undefined when calling runPlanValidation.');
589
634
  }
590
635
  let localVarHeaders = this.defaultHeaders;
591
636
  // authentication (ApiKeyAuth) required
@@ -622,7 +667,7 @@ class PlanService extends BaseService {
622
667
  const { basePath, withCredentials } = this.configuration;
623
668
  return this.httpClient.request('post', `${basePath}${localVarPath}`, {
624
669
  context: localVarHttpContext,
625
- body: planTaskAgro,
670
+ body: agroPlanTaskAgro,
626
671
  responseType: responseType_,
627
672
  ...(withCredentials ? { withCredentials } : {}),
628
673
  headers: localVarHeaders,
@@ -651,7 +696,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
651
696
  /**
652
697
  * VRt.Agro [AG]
653
698
  *
654
- * The version of the OpenAPI document: 7.29.3120
699
+ * The version of the OpenAPI document: 7.31.3182
655
700
  * Contact: servicedesk@veeroute.com
656
701
  *
657
702
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -794,7 +839,100 @@ const APIS = [PlanService, SystemService];
794
839
  /**
795
840
  * VRt.Agro [AG]
796
841
  *
797
- * The version of the OpenAPI document: 7.29.3120
842
+ * The version of the OpenAPI document: 7.31.3182
843
+ * Contact: servicedesk@veeroute.com
844
+ *
845
+ * NOTE: This class is auto generated by OpenAPI Generator.
846
+ * Do not edit the class manually.
847
+ */
848
+ /**
849
+ * 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
850
+ */
851
+ var AgroEntityErrorTypeAgro;
852
+ (function (AgroEntityErrorTypeAgro) {
853
+ AgroEntityErrorTypeAgro["UNIQUE_IDS_VIOLATION"] = "UNIQUE_IDS_VIOLATION";
854
+ AgroEntityErrorTypeAgro["INCONSISTENT_REFERENCE"] = "INCONSISTENT_REFERENCE";
855
+ AgroEntityErrorTypeAgro["INVALID_TIMELINE"] = "INVALID_TIMELINE";
856
+ AgroEntityErrorTypeAgro["INVALID_DATEWINDOW"] = "INVALID_DATEWINDOW";
857
+ AgroEntityErrorTypeAgro["INVALID_LEFTOVER_AMOUNT"] = "INVALID_LEFTOVER_AMOUNT";
858
+ AgroEntityErrorTypeAgro["INVALID_LEFTOVER_PER_ONE_TARGET"] = "INVALID_LEFTOVER_PER_ONE_TARGET";
859
+ AgroEntityErrorTypeAgro["INVALID_CHAMBER_VARIANTS"] = "INVALID_CHAMBER_VARIANTS";
860
+ })(AgroEntityErrorTypeAgro || (AgroEntityErrorTypeAgro = {}));
861
+
862
+ /**
863
+ * VRt.Agro [AG]
864
+ *
865
+ * The version of the OpenAPI document: 7.31.3182
866
+ * Contact: servicedesk@veeroute.com
867
+ *
868
+ * NOTE: This class is auto generated by OpenAPI Generator.
869
+ * Do not edit the class manually.
870
+ */
871
+ /**
872
+ * Entity type.
873
+ */
874
+ var AgroEntityTypeAgro;
875
+ (function (AgroEntityTypeAgro) {
876
+ AgroEntityTypeAgro["TASK"] = "TASK";
877
+ AgroEntityTypeAgro["SETTINGS"] = "SETTINGS";
878
+ AgroEntityTypeAgro["CROP"] = "CROP";
879
+ AgroEntityTypeAgro["FIELD"] = "FIELD";
880
+ AgroEntityTypeAgro["ELEVATOR"] = "ELEVATOR";
881
+ AgroEntityTypeAgro["FACTORY"] = "FACTORY";
882
+ AgroEntityTypeAgro["MARKET"] = "MARKET";
883
+ AgroEntityTypeAgro["STORAGE"] = "STORAGE";
884
+ AgroEntityTypeAgro["SILO"] = "SILO";
885
+ AgroEntityTypeAgro["BUNKER"] = "BUNKER";
886
+ AgroEntityTypeAgro["DRYER"] = "DRYER";
887
+ AgroEntityTypeAgro["GATE"] = "GATE";
888
+ AgroEntityTypeAgro["CONSUMER"] = "CONSUMER";
889
+ AgroEntityTypeAgro["LEFTOVER"] = "LEFTOVER";
890
+ AgroEntityTypeAgro["FORECAST_ELEMENT"] = "FORECAST_ELEMENT";
891
+ })(AgroEntityTypeAgro || (AgroEntityTypeAgro = {}));
892
+
893
+ /**
894
+ * VRt.Agro [AG]
895
+ *
896
+ * The version of the OpenAPI document: 7.31.3182
897
+ * Contact: servicedesk@veeroute.com
898
+ *
899
+ * NOTE: This class is auto generated by OpenAPI Generator.
900
+ * Do not edit the class manually.
901
+ */
902
+ /**
903
+ * 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
904
+ */
905
+ var AgroEntityWarningTypeAgro;
906
+ (function (AgroEntityWarningTypeAgro) {
907
+ AgroEntityWarningTypeAgro["NO_COMPATIBLE_STORAGE"] = "NO_COMPATIBLE_STORAGE";
908
+ AgroEntityWarningTypeAgro["NO_AVAILABLE_MOVEMENT"] = "NO_AVAILABLE_MOVEMENT";
909
+ AgroEntityWarningTypeAgro["NO_AVAILABLE_CONSUMER"] = "NO_AVAILABLE_CONSUMER";
910
+ })(AgroEntityWarningTypeAgro || (AgroEntityWarningTypeAgro = {}));
911
+
912
+ /**
913
+ * VRt.Agro [AG]
914
+ *
915
+ * The version of the OpenAPI document: 7.31.3182
916
+ * Contact: servicedesk@veeroute.com
917
+ *
918
+ * NOTE: This class is auto generated by OpenAPI Generator.
919
+ * Do not edit the class manually.
920
+ */
921
+
922
+ /**
923
+ * VRt.Agro [AG]
924
+ *
925
+ * The version of the OpenAPI document: 7.31.3182
926
+ * Contact: servicedesk@veeroute.com
927
+ *
928
+ * NOTE: This class is auto generated by OpenAPI Generator.
929
+ * Do not edit the class manually.
930
+ */
931
+
932
+ /**
933
+ * VRt.Agro [AG]
934
+ *
935
+ * The version of the OpenAPI document: 7.31.3182
798
936
  * Contact: servicedesk@veeroute.com
799
937
  *
800
938
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -804,7 +942,7 @@ const APIS = [PlanService, SystemService];
804
942
  /**
805
943
  * VRt.Agro [AG]
806
944
  *
807
- * The version of the OpenAPI document: 7.29.3120
945
+ * The version of the OpenAPI document: 7.31.3182
808
946
  * Contact: servicedesk@veeroute.com
809
947
  *
810
948
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -814,7 +952,7 @@ const APIS = [PlanService, SystemService];
814
952
  /**
815
953
  * VRt.Agro [AG]
816
954
  *
817
- * The version of the OpenAPI document: 7.29.3120
955
+ * The version of the OpenAPI document: 7.31.3182
818
956
  * Contact: servicedesk@veeroute.com
819
957
  *
820
958
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -838,7 +976,7 @@ var CalculationStatusAgro;
838
976
  /**
839
977
  * VRt.Agro [AG]
840
978
  *
841
- * The version of the OpenAPI document: 7.29.3120
979
+ * The version of the OpenAPI document: 7.31.3182
842
980
  * Contact: servicedesk@veeroute.com
843
981
  *
844
982
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -848,7 +986,7 @@ var CalculationStatusAgro;
848
986
  /**
849
987
  * VRt.Agro [AG]
850
988
  *
851
- * The version of the OpenAPI document: 7.29.3120
989
+ * The version of the OpenAPI document: 7.31.3182
852
990
  * Contact: servicedesk@veeroute.com
853
991
  *
854
992
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -868,7 +1006,7 @@ var ContractTypeAgro;
868
1006
  /**
869
1007
  * VRt.Agro [AG]
870
1008
  *
871
- * The version of the OpenAPI document: 7.29.3120
1009
+ * The version of the OpenAPI document: 7.31.3182
872
1010
  * Contact: servicedesk@veeroute.com
873
1011
  *
874
1012
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -886,90 +1024,45 @@ var CropTypeAgro;
886
1024
  /**
887
1025
  * VRt.Agro [AG]
888
1026
  *
889
- * The version of the OpenAPI document: 7.29.3120
890
- * Contact: servicedesk@veeroute.com
891
- *
892
- * NOTE: This class is auto generated by OpenAPI Generator.
893
- * Do not edit the class manually.
894
- */
895
-
896
- /**
897
- * VRt.Agro [AG]
898
- *
899
- * The version of the OpenAPI document: 7.29.3120
1027
+ * The version of the OpenAPI document: 7.31.3182
900
1028
  * Contact: servicedesk@veeroute.com
901
1029
  *
902
1030
  * NOTE: This class is auto generated by OpenAPI Generator.
903
1031
  * Do not edit the class manually.
904
1032
  */
905
- /**
906
- * 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
907
- */
908
- var EntityErrorTypeAgro;
909
- (function (EntityErrorTypeAgro) {
910
- EntityErrorTypeAgro["UNIQUE_IDS_VIOLATION"] = "UNIQUE_IDS_VIOLATION";
911
- EntityErrorTypeAgro["INCONSISTENT_REFERENCE"] = "INCONSISTENT_REFERENCE";
912
- EntityErrorTypeAgro["INVALID_TIMELINE"] = "INVALID_TIMELINE";
913
- EntityErrorTypeAgro["INVALID_DATEWINDOW"] = "INVALID_DATEWINDOW";
914
- EntityErrorTypeAgro["INVALID_LEFTOVER_AMOUNT"] = "INVALID_LEFTOVER_AMOUNT";
915
- EntityErrorTypeAgro["INVALID_LEFTOVER_PER_ONE_TARGET"] = "INVALID_LEFTOVER_PER_ONE_TARGET";
916
- EntityErrorTypeAgro["INVALID_CHAMBER_VARIANTS"] = "INVALID_CHAMBER_VARIANTS";
917
- })(EntityErrorTypeAgro || (EntityErrorTypeAgro = {}));
918
1033
 
919
1034
  /**
920
1035
  * VRt.Agro [AG]
921
1036
  *
922
- * The version of the OpenAPI document: 7.29.3120
1037
+ * The version of the OpenAPI document: 7.31.3182
923
1038
  * Contact: servicedesk@veeroute.com
924
1039
  *
925
1040
  * NOTE: This class is auto generated by OpenAPI Generator.
926
1041
  * Do not edit the class manually.
927
1042
  */
928
1043
  /**
929
- * Entity type.
1044
+ * Data flow type.
930
1045
  */
931
- var EntityTypeAgro;
932
- (function (EntityTypeAgro) {
933
- EntityTypeAgro["TASK"] = "TASK";
934
- EntityTypeAgro["SETTINGS"] = "SETTINGS";
935
- EntityTypeAgro["CROP"] = "CROP";
936
- EntityTypeAgro["FIELD"] = "FIELD";
937
- EntityTypeAgro["ELEVATOR"] = "ELEVATOR";
938
- EntityTypeAgro["FACTORY"] = "FACTORY";
939
- EntityTypeAgro["MARKET"] = "MARKET";
940
- EntityTypeAgro["STORAGE"] = "STORAGE";
941
- EntityTypeAgro["SILO"] = "SILO";
942
- EntityTypeAgro["BUNKER"] = "BUNKER";
943
- EntityTypeAgro["DRYER"] = "DRYER";
944
- EntityTypeAgro["GATE"] = "GATE";
945
- EntityTypeAgro["CONSUMER"] = "CONSUMER";
946
- EntityTypeAgro["LEFTOVER"] = "LEFTOVER";
947
- EntityTypeAgro["FORECAST_ELEMENT"] = "FORECAST_ELEMENT";
948
- })(EntityTypeAgro || (EntityTypeAgro = {}));
1046
+ var FlowTypeAgro;
1047
+ (function (FlowTypeAgro) {
1048
+ FlowTypeAgro["INPUT"] = "INPUT";
1049
+ FlowTypeAgro["OUTPUT"] = "OUTPUT";
1050
+ })(FlowTypeAgro || (FlowTypeAgro = {}));
949
1051
 
950
1052
  /**
951
1053
  * VRt.Agro [AG]
952
1054
  *
953
- * The version of the OpenAPI document: 7.29.3120
1055
+ * The version of the OpenAPI document: 7.31.3182
954
1056
  * Contact: servicedesk@veeroute.com
955
1057
  *
956
1058
  * NOTE: This class is auto generated by OpenAPI Generator.
957
1059
  * Do not edit the class manually.
958
1060
  */
959
- /**
960
- * 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
961
- */
962
- var EntityWarningTypeAgro;
963
- (function (EntityWarningTypeAgro) {
964
- EntityWarningTypeAgro["NO_COMPATIBLE_STORAGE"] = "NO_COMPATIBLE_STORAGE";
965
- EntityWarningTypeAgro["NO_AVAILABLE_MOVEMENT"] = "NO_AVAILABLE_MOVEMENT";
966
- EntityWarningTypeAgro["NO_AVAILABLE_CONSUMER"] = "NO_AVAILABLE_CONSUMER";
967
- })(EntityWarningTypeAgro || (EntityWarningTypeAgro = {}));
968
1061
 
969
1062
  /**
970
1063
  * VRt.Agro [AG]
971
1064
  *
972
- * The version of the OpenAPI document: 7.29.3120
1065
+ * The version of the OpenAPI document: 7.31.3182
973
1066
  * Contact: servicedesk@veeroute.com
974
1067
  *
975
1068
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -979,17 +1072,7 @@ var EntityWarningTypeAgro;
979
1072
  /**
980
1073
  * VRt.Agro [AG]
981
1074
  *
982
- * The version of the OpenAPI document: 7.29.3120
983
- * Contact: servicedesk@veeroute.com
984
- *
985
- * NOTE: This class is auto generated by OpenAPI Generator.
986
- * Do not edit the class manually.
987
- */
988
-
989
- /**
990
- * VRt.Agro [AG]
991
- *
992
- * The version of the OpenAPI document: 7.29.3120
1075
+ * The version of the OpenAPI document: 7.31.3182
993
1076
  * Contact: servicedesk@veeroute.com
994
1077
  *
995
1078
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1009,7 +1092,7 @@ var ObjectTypeAgro;
1009
1092
  /**
1010
1093
  * VRt.Agro [AG]
1011
1094
  *
1012
- * The version of the OpenAPI document: 7.29.3120
1095
+ * The version of the OpenAPI document: 7.31.3182
1013
1096
  * Contact: servicedesk@veeroute.com
1014
1097
  *
1015
1098
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1019,7 +1102,7 @@ var ObjectTypeAgro;
1019
1102
  /**
1020
1103
  * VRt.Agro [AG]
1021
1104
  *
1022
- * The version of the OpenAPI document: 7.29.3120
1105
+ * The version of the OpenAPI document: 7.31.3182
1023
1106
  * Contact: servicedesk@veeroute.com
1024
1107
  *
1025
1108
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1044,17 +1127,7 @@ var OperationTypeAgro;
1044
1127
  /**
1045
1128
  * VRt.Agro [AG]
1046
1129
  *
1047
- * The version of the OpenAPI document: 7.29.3120
1048
- * Contact: servicedesk@veeroute.com
1049
- *
1050
- * NOTE: This class is auto generated by OpenAPI Generator.
1051
- * Do not edit the class manually.
1052
- */
1053
-
1054
- /**
1055
- * VRt.Agro [AG]
1056
- *
1057
- * The version of the OpenAPI document: 7.29.3120
1130
+ * The version of the OpenAPI document: 7.31.3182
1058
1131
  * Contact: servicedesk@veeroute.com
1059
1132
  *
1060
1133
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1072,7 +1145,7 @@ var ProjectConfigurationAgro;
1072
1145
  /**
1073
1146
  * VRt.Agro [AG]
1074
1147
  *
1075
- * The version of the OpenAPI document: 7.29.3120
1148
+ * The version of the OpenAPI document: 7.31.3182
1076
1149
  * Contact: servicedesk@veeroute.com
1077
1150
  *
1078
1151
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1082,7 +1155,7 @@ var ProjectConfigurationAgro;
1082
1155
  /**
1083
1156
  * VRt.Agro [AG]
1084
1157
  *
1085
- * The version of the OpenAPI document: 7.29.3120
1158
+ * The version of the OpenAPI document: 7.31.3182
1086
1159
  * Contact: servicedesk@veeroute.com
1087
1160
  *
1088
1161
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1108,17 +1181,7 @@ var ServiceAgro;
1108
1181
  /**
1109
1182
  * VRt.Agro [AG]
1110
1183
  *
1111
- * The version of the OpenAPI document: 7.29.3120
1112
- * Contact: servicedesk@veeroute.com
1113
- *
1114
- * NOTE: This class is auto generated by OpenAPI Generator.
1115
- * Do not edit the class manually.
1116
- */
1117
-
1118
- /**
1119
- * VRt.Agro [AG]
1120
- *
1121
- * The version of the OpenAPI document: 7.29.3120
1184
+ * The version of the OpenAPI document: 7.31.3182
1122
1185
  * Contact: servicedesk@veeroute.com
1123
1186
  *
1124
1187
  * NOTE: This class is auto generated by OpenAPI Generator.
@@ -1177,5 +1240,5 @@ function provideApi(configOrBasePath) {
1177
1240
  * Generated bundle index. Do not edit.
1178
1241
  */
1179
1242
 
1180
- export { APIS, BASE_PATH, COLLECTION_FORMATS, CalculationStatusAgro, Configuration, ContractTypeAgro, CropTypeAgro, EntityErrorTypeAgro, EntityTypeAgro, EntityWarningTypeAgro, LssAgroApiModule, ObjectTypeAgro, OperationTypeAgro, PlanService, ProjectConfigurationAgro, ServiceAgro, SystemService, provideApi };
1243
+ export { APIS, AgroEntityErrorTypeAgro, AgroEntityTypeAgro, AgroEntityWarningTypeAgro, BASE_PATH, COLLECTION_FORMATS, CalculationStatusAgro, Configuration, ContractTypeAgro, CropTypeAgro, FlowTypeAgro, LssAgroApiModule, ObjectTypeAgro, OperationTypeAgro, PlanService, ProjectConfigurationAgro, ServiceAgro, SystemService, provideApi };
1181
1244
  //# sourceMappingURL=veeroute-lss-agro-angular.mjs.map