@nerdjs/sales-kit 2.0.71 → 2.0.73

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.
@@ -6,6 +6,7 @@ import { useMemo } from "react";
6
6
  import { useTranslation } from "react-i18next";
7
7
  import { getShipconsSelectors, useGetShipconsQuery } from "../../redux";
8
8
  import { useSelector } from "react-redux";
9
+ const DATE_TIME_REGEX = /(\d{4})(-)(\d{2})(-)(\d{2})( )(\d{2})(:)(\d{2})(:)(\d{2})/i;
9
10
  /**
10
11
  *
11
12
  * @param {object} param0 props
@@ -32,49 +33,66 @@ export function LoadDetailsStatus({ load, }) {
32
33
  return (_jsx(Card, { sx: {
33
34
  p: 2,
34
35
  zIndex: theme.zIndex.modal - 1,
35
- }, children: isFetching ? (_jsx(Box, { display: "flex", width: "100%", justifyContent: "center", children: _jsx(CircularProgress, {}) })) : (_jsxs(_Fragment, { children: [_jsx(Typography, { level: "h4", children: t("Load Details") }), _jsx(Grid, { container: true, spacing: 1, justifyContent: "center", alignItems: "center", height: "100%", sx: { pt: 2 }, children: _jsx(Grid, { xs: 12, children: shipcons.map((s, i) => (_jsxs(Box, { sx: { display: "flex", gap: 1, alignItems: "stretch" }, children: [_jsx(Box, { sx: {
36
- display: "flex",
37
- flexDirection: "column",
38
- gap: 1,
39
- justifyContent: "space-between",
40
- }, children: _jsx(Typography, { children: s.shipConsType === "shipper" ? (_jsx("i", { className: "fa-solid fa-arrow-up" })) : (_jsx("i", { className: "fa-solid fa-arrow-down" })) }) }), _jsx(Box, { children: _jsx(Tooltip, { size: "sm", title: s.eta?.departed
41
- ? "Departed"
42
- : s.eta?.arrived
43
- ? "Arrived"
44
- : "", children: _jsx(Sheet, { variant: "solid", sx: {
45
- height: "100%",
46
- width: 12,
47
- borderTopRightRadius: i === 0 ? 6 : 0,
48
- borderTopLeftRadius: i === 0 ? 6 : 0,
49
- borderBottomRightRadius: i === shipcons.length - 1 ? 6 : 0,
50
- borderBottomLeftRadius: i === shipcons.length - 1 ? 6 : 0,
51
- fontSize: 7,
52
- p: 0.25,
53
- textAlign: "center",
54
- }, color: s.eta?.departed
55
- ? "success"
36
+ }, children: isFetching ? (_jsx(Box, { display: "flex", width: "100%", justifyContent: "center", children: _jsx(CircularProgress, {}) })) : (_jsxs(_Fragment, { children: [_jsx(Typography, { level: "h4", children: t("Load Details") }), _jsx(Grid, { container: true, spacing: 1, justifyContent: "center", alignItems: "center", height: "100%", sx: { pt: 2 }, children: _jsx(Grid, { xs: 12, children: shipcons.map((s, i) => {
37
+ let arrival = s.eta?.arrival_time_local?.match(DATE_TIME_REGEX)?.[0];
38
+ if (arrival) {
39
+ arrival = DateTime.fromFormat(arrival, "yyyy-MM-dd HH:mm:ss", { zone: "utc" }).toFormat("MM/dd/yy hh:mm a");
40
+ arrival += " " + s.eta?.arrival_time_local?.split(" ")[2];
41
+ }
42
+ let depart = s.eta?.depart_time_local?.match(DATE_TIME_REGEX)?.[0];
43
+ if (depart) {
44
+ depart = DateTime.fromFormat(depart, "yyyy-MM-dd HH:mm:ss", {
45
+ zone: "utc",
46
+ }).toFormat("MM/dd/yy hh:mm a");
47
+ depart += " " + s.eta?.depart_time_local?.split(" ")[2];
48
+ }
49
+ let eta = s.eta?.local_eta?.match(DATE_TIME_REGEX)?.[0];
50
+ if (eta) {
51
+ eta = DateTime.fromFormat(eta, "yyyy-MM-dd HH:mm:ss", {
52
+ zone: "utc",
53
+ }).toFormat("MM/dd/yy hh:mm a");
54
+ eta += " " + s.eta?.local_eta?.split(" ")[2];
55
+ }
56
+ return (_jsxs(Box, { sx: { display: "flex", gap: 1, alignItems: "stretch" }, children: [_jsx(Box, { sx: {
57
+ display: "flex",
58
+ flexDirection: "column",
59
+ gap: 1,
60
+ justifyContent: "space-between",
61
+ }, children: _jsx(Typography, { children: s.shipConsType === "shipper" ? (_jsx("i", { className: "fa-solid fa-arrow-up" })) : (_jsx("i", { className: "fa-solid fa-arrow-down" })) }) }), _jsx(Box, { children: _jsx(Tooltip, { size: "sm", title: s.eta?.departed
62
+ ? "Departed"
56
63
  : s.eta?.arrived
57
- ? "primary"
58
- : "neutral", children: _jsx("i", { className: "fa-solid fa-circle" }) }) }) }), _jsxs(Box, { sx: {
59
- pb: 4,
60
- p: 1,
61
- width: "100%",
62
- borderRadius: 4,
63
- background: "rgba(155,155,155,0)",
64
- }, children: [_jsxs(Typography, { level: "body-sm", children: [_jsxs("b", { children: [s.stopNumber, ". ", s?.name] }), s.eta?.departed ? (_jsxs(Typography, { level: "body-sm", color: "success", children: [" ", "Departed"] })) : s.eta?.arrived ? (_jsxs(Typography, { level: "body-sm", color: "primary", children: [" ", "Arrived"] })) : ("")] }), _jsxs(Typography, { level: "body-xs", children: [s.zip, " ", s.city, ", ", s.state] }), _jsx(Divider, {}), s.timeFrom ? (_jsxs(Typography, { level: "body-xs", children: [_jsx(Typography, { fontWeight: "xl", level: "body-xs", children: "Appointment:" }), " ", s.stopDate
65
- ? DateTime.fromISO(s.stopDate.replace("Z", "")
64
+ ? "Arrived"
65
+ : "", children: _jsx(Sheet, { variant: "solid", sx: {
66
+ height: "100%",
67
+ width: 12,
68
+ borderTopRightRadius: i === 0 ? 6 : 0,
69
+ borderTopLeftRadius: i === 0 ? 6 : 0,
70
+ borderBottomRightRadius: i === shipcons.length - 1 ? 6 : 0,
71
+ borderBottomLeftRadius: i === shipcons.length - 1 ? 6 : 0,
72
+ fontSize: 7,
73
+ p: 0.25,
74
+ textAlign: "center",
75
+ }, color: s.eta?.departed
76
+ ? "success"
77
+ : s.eta?.arrived
78
+ ? "primary"
79
+ : "neutral", children: _jsx("i", { className: "fa-solid fa-circle" }) }) }) }), _jsxs(Box, { sx: {
80
+ pb: 4,
81
+ p: 1,
82
+ width: "100%",
83
+ borderRadius: 4,
84
+ background: "rgba(155,155,155,0)",
85
+ }, children: [_jsxs(Typography, { level: "body-sm", children: [_jsxs("b", { children: [s.stopNumber, ". ", s?.name] }), s.eta?.departed ? (_jsxs(Typography, { level: "body-sm", color: "success", children: [" ", "Departed"] })) : s.eta?.arrived ? (_jsxs(Typography, { level: "body-sm", color: "primary", children: [" ", "Arrived"] })) : ("")] }), _jsxs(Typography, { level: "body-xs", children: [s.zip, " ", s.city, ", ", s.state] }), _jsx(Divider, {}), s.timeFrom ? (_jsxs(Typography, { level: "body-xs", children: [_jsx(Typography, { fontWeight: "xl", level: "body-xs", children: "Appointment:" }), " ", s.stopDate
86
+ ? DateTime.fromISO(s.stopDate.replace("Z", "")
87
+ // eslint-disable-next-line i18next/no-literal-string
88
+ ).toFormat("MM/dd/yy")
89
+ : "", " ", DateTime.fromISO(s.timeFrom.replace("Z", "")).toFormat(
66
90
  // eslint-disable-next-line i18next/no-literal-string
67
- ).toFormat("MM/dd/yy")
68
- : "", " ", DateTime.fromISO(s.timeFrom.replace("Z", "")).toFormat(
69
- // eslint-disable-next-line i18next/no-literal-string
70
- "hh:mm a"), " ", "-", " ", s.timeTo
71
- ? DateTime.fromISO(s.timeTo.replace("Z", "")
72
- // eslint-disable-next-line i18next/no-literal-string
73
- ).toFormat("hh:mm a")
74
- : ""] })) : ([]), s.eta?.local_eta ? (_jsxs(Typography, { level: "body-xs", children: [_jsx(Typography, { fontWeight: "xl", level: "body-xs", children: "ETA:" }), " ", DateTime.fromFormat(s.eta.local_eta, "yyyy-MM-dd HH:mm:ss z", { setZone: true }).toFormat("MM/dd/yy hh:mm a z")] })) : null, s.eta ? (_jsxs(Typography, { level: "body-xs", children: [_jsx(Typography, { fontWeight: "xl", level: "body-xs", children: "Arrival/Departure:" }), " ", s.eta.arrival_time_local
75
- ? DateTime.fromFormat(s.eta.arrival_time_local, "yyyy-MM-dd HH:mm:ss z", { setZone: true }).toFormat("MM/dd/yy hh:mm a z")
76
- : "", " ", "-", " ", s.eta.depart_time_local
77
- ? DateTime.fromFormat(s.eta.depart_time_local, "yyyy-MM-dd HH:mm:ss z", { setZone: true }).toFormat("MM/dd/yy hh:mm a z")
78
- : ""] })) : null] })] }, s.stopNumber))) }) })] })) }));
91
+ "hh:mm a"), " ", "-", " ", s.timeTo
92
+ ? DateTime.fromISO(s.timeTo.replace("Z", "")
93
+ // eslint-disable-next-line i18next/no-literal-string
94
+ ).toFormat("hh:mm a")
95
+ : ""] })) : ([]), s.eta ? (_jsxs(_Fragment, { children: [_jsxs(Typography, { level: "body-xs", children: [_jsx(Typography, { fontWeight: "xl", level: "body-xs", children: "ETA:" }), " ", eta ?? "-"] }), _jsx(Typography, { level: "body-xs", children: s.eta.eta_notes }), _jsxs(Typography, { level: "body-xs", children: [_jsx(Typography, { fontWeight: "xl", level: "body-xs", children: "Arrival/Departure:" }), " ", arrival ?? "", " - ", depart ?? ""] })] })) : null] })] }, s.stopNumber));
96
+ }) }) })] })) }));
79
97
  }
80
98
  //# sourceMappingURL=loadDetailsStatus.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"loadDetailsStatus.js","sourceRoot":"","sources":["../../../src/hooks/load/loadDetailsStatus.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"loadDetailsStatus.js","sourceRoot":"","sources":["../../../src/hooks/load/loadDetailsStatus.tsx"],"names":[],"mappings":"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"}
@@ -4,22 +4,22 @@ export declare const departmentPhoneEndpoints: import("@reduxjs/toolkit/query").
4
4
  getDepartmentPhones: import("@reduxjs/toolkit/query").QueryDefinition<void | Record<string, unknown>, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", EntityState<DepartmentPhone_Entity>, "salesApi">;
5
5
  getDepartmentPhone: import("@reduxjs/toolkit/query").QueryDefinition<number, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", DepartmentPhone_Entity, "salesApi">;
6
6
  createDepartmentPhone: import("@reduxjs/toolkit/query").MutationDefinition<{
7
- departmentPhone: Partial<DepartmentPhone_Entity>;
7
+ departmentphone: Partial<DepartmentPhone_Entity>;
8
8
  }, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", DepartmentPhone_Entity, "salesApi">;
9
9
  updateDepartmentPhone: import("@reduxjs/toolkit/query").MutationDefinition<{
10
10
  id: number;
11
11
  body: {
12
- departmentPhone: Partial<DepartmentPhone_Entity>;
12
+ departmentphone: Partial<DepartmentPhone_Entity>;
13
13
  };
14
14
  }, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", void, "salesApi">;
15
15
  deleteDepartmentPhone: import("@reduxjs/toolkit/query").MutationDefinition<number, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", void, "salesApi">;
16
16
  }, "salesApi", "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
17
17
  export declare const useGetDepartmentPhoneQuery: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseQuery<import("@reduxjs/toolkit/query").QueryDefinition<number, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", DepartmentPhone_Entity, "salesApi">>, useGetDepartmentPhonesQuery: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseQuery<import("@reduxjs/toolkit/query").QueryDefinition<void | Record<string, unknown>, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", EntityState<DepartmentPhone_Entity>, "salesApi">>, useLazyGetDepartmentPhonesQuery: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseLazyQuery<import("@reduxjs/toolkit/query").QueryDefinition<void | Record<string, unknown>, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", EntityState<DepartmentPhone_Entity>, "salesApi">>, useLazyGetDepartmentPhoneQuery: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseLazyQuery<import("@reduxjs/toolkit/query").QueryDefinition<number, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", DepartmentPhone_Entity, "salesApi">>, useCreateDepartmentPhoneMutation: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseMutation<import("@reduxjs/toolkit/query").MutationDefinition<{
18
- departmentPhone: Partial<DepartmentPhone_Entity>;
18
+ departmentphone: Partial<DepartmentPhone_Entity>;
19
19
  }, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", DepartmentPhone_Entity, "salesApi">>, useDeleteDepartmentPhoneMutation: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseMutation<import("@reduxjs/toolkit/query").MutationDefinition<number, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", void, "salesApi">>, useUpdateDepartmentPhoneMutation: import("@reduxjs/toolkit/dist/query/react/buildHooks").UseMutation<import("@reduxjs/toolkit/query").MutationDefinition<{
20
20
  id: number;
21
21
  body: {
22
- departmentPhone: Partial<DepartmentPhone_Entity>;
22
+ departmentphone: Partial<DepartmentPhone_Entity>;
23
23
  };
24
24
  }, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/dist/query/tsHelpers").MaybePromise<import("@reduxjs/toolkit/dist/query/baseQueryTypes").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "shipcons" | "files" | "quotes" | "loads" | "customers" | "loadAdjustments" | "locations" | "quoteAccessorials" | "tenders" | "holidays" | "trailerAvailabilities" | "locationsV1" | "locationsV1Accessorials" | "archerFiles" | "appointmentNotes" | "appointmentNoteTypes" | "shipconsV1" | "loadShipcons" | "appointmentIssueCategories" | "appointmentIssueSubcategories" | "personNames" | "nodeNames" | "driverNames" | "carrierNames" | "appointmentIssues" | "loadsV1" | "nmfcClasses" | "commoditiesV1" | "loadCommodities" | "loadQuoteAccessorials" | "quoteAccessorialsV1" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "userNotesV1" | "loadUserNotesV1" | "unitsV1" | "customersAccessorials" | "notifications" | "people" | "userSubscriptions" | "contacts" | "flags" | "rateReviews" | "loadRateReviews" | "genericTenders" | "loadTenders" | "dispatches" | "summary_dispatchesV1" | "summary_consolidationsV1" | "claims" | "claimResponses" | "claimStatuses" | "billingKickbacks" | "loadBillingKickbacks" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbackResponseAccessorials" | "billingMessages" | "invoicesV1" | "invoiceLineItems" | "invoices" | "billingNotes" | "generalLedgerAccounts" | "invoiceAdjustments" | "customerBillingNotes" | "commodities" | "loadFiles" | "locationsFiles" | "apiTenders" | "customerCredit" | "companyLocations" | "departmentPhones" | "drivers", void, "salesApi">>;
25
25
  export default departmentPhoneEndpoints;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nerdjs/sales-kit",
3
- "version": "2.0.71",
3
+ "version": "2.0.73",
4
4
  "description": "This is a @nerdjs library for the WA Sales Service",
5
5
  "keywords": [],
6
6
  "license": "ISC",