@nerdjs/sales-kit 4.0.51 → 4.0.53-beta.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/entities/accountingInvoice/accountingInvoice.d.ts +4 -0
- package/dist/entities/accountingInvoice/accountingInvoice.js +8 -0
- package/dist/entities/accountingInvoice/accountingInvoice.js.map +1 -1
- package/dist/entities/quote/quote.d.ts +2 -1
- package/dist/entities/record/record.d.ts +1 -0
- package/dist/entities/record/record.js +2 -0
- package/dist/entities/record/record.js.map +1 -1
- package/dist/helpers.d.ts +9 -0
- package/dist/helpers.js +54 -0
- package/dist/helpers.js.map +1 -1
- package/dist/hooks/lep/lepInvoiceDetails.js +1 -1
- package/dist/hooks/lep/lepInvoiceDetails.js.map +1 -1
- package/dist/hooks/lep/lepLoadLocation.d.ts +0 -6
- package/dist/hooks/lep/lepLoadLocation.js +207 -177
- package/dist/hooks/lep/lepLoadLocation.js.map +1 -1
- package/dist/hooks/lep/lepShipcons.js +25 -7
- package/dist/hooks/lep/lepShipcons.js.map +1 -1
- package/dist/hooks/lep/nerdMap/nerdMap.js +28 -40
- package/dist/hooks/lep/nerdMap/nerdMap.js.map +1 -1
- package/dist/hooks/locationsForm/locationFormSales/locationFormSales.d.ts +1 -1
- package/dist/hooks/locationsForm/locationFormSales/locationFormSales.js +4 -3
- package/dist/hooks/locationsForm/locationFormSales/locationFormSales.js.map +1 -1
- package/dist/hooks/locationsForm/locationFormSales/locationFormSalesMain.d.ts +0 -5
- package/dist/hooks/locationsForm/locationFormSales/locationFormSalesMain.js +173 -56
- package/dist/hooks/locationsForm/locationFormSales/locationFormSalesMain.js.map +1 -1
- package/dist/hooks/quote/constants.js +2 -2
- package/dist/hooks/quote/constants.js.map +1 -1
- package/dist/hooks/quote/form.js +16 -5
- package/dist/hooks/quote/form.js.map +1 -1
- package/dist/hooks/quote/helpers.d.ts +1 -0
- package/dist/hooks/quote/helpers.js +286 -330
- package/dist/hooks/quote/helpers.js.map +1 -1
- package/dist/hooks/quote/template.js +2 -2
- package/dist/hooks/quote/template.js.map +1 -1
- package/dist/redux/locationV1/locationV1Endpoints.d.ts +12 -12
- package/dist/redux/quote/quoteAction.d.ts +2 -3
- package/dist/redux/quote/quoteAction.js +2 -3
- package/dist/redux/quote/quoteAction.js.map +1 -1
- package/dist/redux/quote/quoteReducer.js +5 -5
- package/dist/redux/quote/quoteReducer.js.map +1 -1
- package/dist/redux/quote/quoteSalesEndpoints.d.ts +2 -0
- package/package.json +2 -2
|
@@ -2060,6 +2060,8 @@ export type QuoteSMC3Result = {
|
|
|
2060
2060
|
usFuelCost: number;
|
|
2061
2061
|
tariffName: string;
|
|
2062
2062
|
effectiveDate: string;
|
|
2063
|
+
tariffEffectiveDate?: string;
|
|
2064
|
+
tariffAnomaly?: boolean;
|
|
2063
2065
|
discount: string;
|
|
2064
2066
|
createdAt: string;
|
|
2065
2067
|
updatedAt: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nerdjs/sales-kit",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.53-beta.1",
|
|
4
4
|
"description": "This is a @nerdjs library for the WA Sales Service",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "ISC",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@eslint/compat": "1.4.0",
|
|
31
31
|
"@eslint/eslintrc": "3.3.1",
|
|
32
32
|
"@eslint/js": "9.36.0",
|
|
33
|
-
"@types/google.maps": "3.
|
|
33
|
+
"@types/google.maps": "3.64.0",
|
|
34
34
|
"@types/luxon": "3.7.1",
|
|
35
35
|
"@types/node": "24.5.0",
|
|
36
36
|
"@types/react": "19",
|