onroute-policy-engine 2.21.0 → 2.22.0

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.
@@ -100,6 +100,15 @@ export type ICBCInsuranceCertificate = {
100
100
  /** Certificate number */
101
101
  certificateNumber?: string | null;
102
102
  };
103
+ /**
104
+ * Extraordinary Load Request information for STOW permit applications
105
+ */
106
+ export type ExtraordinaryLoadRequest = {
107
+ /** Whether or not an extraordinary load request is to be applied to the permit */
108
+ isExtraordinaryLoadRequest: boolean;
109
+ /** Approval number */
110
+ approvalNumber?: string | null;
111
+ };
103
112
  /**
104
113
  * Complete permit data including all application details
105
114
  */
@@ -140,6 +149,8 @@ export type PermitData = {
140
149
  conditionalLicensingFee?: string | null;
141
150
  /** ICBC insurance certificate information (optional) */
142
151
  icbcInsuranceCertificate?: ICBCInsuranceCertificate | null;
152
+ /** Extraordinary load request information for STOW permit (optional) */
153
+ extraordinaryLoadRequest?: ExtraordinaryLoadRequest | null;
143
154
  };
144
155
  /**
145
156
  * Selected commodity for the permit with load description
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "v2.21.0";
1
+ export declare const version = "v2.22.0";
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.21.0';
5
+ exports.version = 'v2.22.0';
package/package.json CHANGED
@@ -91,5 +91,5 @@
91
91
  ],
92
92
  "testEnvironment": "node"
93
93
  },
94
- "version": "v2.21.0"
94
+ "version": "v2.22.0"
95
95
  }