onroute-policy-engine 2.26.0 → 2.26.1

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.
@@ -975,6 +975,14 @@ function CheckMaxTireLoad(_policy, _vehicleConfiguration, axleConfiguration) {
975
975
  }
976
976
  return;
977
977
  }
978
+ // ORV2-5903 keeps this exact configuration as a grandfathered TPS case.
979
+ const hasGrandfatheredTpsTireLimit = ac.numberOfAxles === 2 &&
980
+ tireSize === 279.4 &&
981
+ numberOfTires === 8 &&
982
+ axleWeight <= 23000;
983
+ if (hasGrandfatheredTpsTireLimit) {
984
+ return;
985
+ }
978
986
  /**
979
987
  * Standard non-steering axle — all vehicles except Crane - All Terrain,
980
988
  * Mobile Crane (non-steering), Rubber Tired Loader
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "v2.26.0";
1
+ export declare const version = "v2.26.1";
package/dist/version.js CHANGED
@@ -2,4 +2,4 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
4
  // Generated by genversion.
5
- exports.version = 'v2.26.0';
5
+ exports.version = 'v2.26.1';
package/package.json CHANGED
@@ -91,5 +91,5 @@
91
91
  ],
92
92
  "testEnvironment": "node"
93
93
  },
94
- "version": "v2.26.0"
94
+ "version": "v2.26.1"
95
95
  }