onroute-policy-engine 2.21.0 → 2.22.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.
- package/dist/types/permit-application.d.ts +11 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
1
|
+
export declare const version = "v2.22.1";
|
package/dist/version.js
CHANGED
package/package.json
CHANGED