@nerdjs/sales-kit 3.0.5 → 3.0.7
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/cargoConsolidation/cargoConsolidation.d.ts +35 -117
- package/dist/entities/cargoConsolidation/cargoConsolidation.js +87 -229
- package/dist/entities/cargoConsolidation/cargoConsolidation.js.map +1 -1
- package/dist/entities/cargoConsolidationV1/cargoConsolidationV1.d.ts +129 -0
- package/dist/entities/cargoConsolidationV1/cargoConsolidationV1.js +280 -0
- package/dist/entities/cargoConsolidationV1/cargoConsolidationV1.js.map +1 -0
- package/dist/entities/cargoConsolidationV1/helper.d.ts +5 -0
- package/dist/entities/cargoConsolidationV1/helper.js +16 -0
- package/dist/entities/cargoConsolidationV1/helper.js.map +1 -0
- package/dist/entities/cargoConsolidationV1/index.d.ts +2 -0
- package/dist/entities/cargoConsolidationV1/index.js +3 -0
- package/dist/entities/cargoConsolidationV1/index.js.map +1 -0
- package/dist/entities/genericTender/genericTender.d.ts +1 -0
- package/dist/entities/genericTender/genericTender.js +2 -0
- package/dist/entities/genericTender/genericTender.js.map +1 -1
- package/dist/entities/index.d.ts +12 -11
- package/dist/entities/index.js +12 -11
- package/dist/entities/index.js.map +1 -1
- package/dist/hooks/archerIntelligence/archerIntelligence.js +20 -9
- package/dist/hooks/archerIntelligence/archerIntelligence.js.map +1 -1
- package/dist/hooks/locationsForm/locationFormSales/locationFormSalesMain.js +0 -1
- package/dist/hooks/locationsForm/locationFormSales/locationFormSalesMain.js.map +1 -1
- package/dist/redux/cargoConsolidation/cargoConsolidationEndpoints.d.ts +397 -1370
- package/dist/redux/cargoConsolidation/cargoConsolidationEndpoints.js +14 -59
- package/dist/redux/cargoConsolidation/cargoConsolidationEndpoints.js.map +1 -1
- package/dist/redux/cargoConsolidationV1/cargoConsolidationV1Endpoints.d.ts +2452 -0
- package/dist/redux/cargoConsolidationV1/cargoConsolidationV1Endpoints.js +116 -0
- package/dist/redux/cargoConsolidationV1/cargoConsolidationV1Endpoints.js.map +1 -0
- package/dist/redux/cargoConsolidationV1/index.d.ts +2 -0
- package/dist/redux/cargoConsolidationV1/index.js +3 -0
- package/dist/redux/cargoConsolidationV1/index.js.map +1 -0
- package/dist/redux/index.d.ts +2 -1
- package/dist/redux/index.js +2 -1
- package/dist/redux/index.js.map +1 -1
- package/dist/redux/loadV1/loadV1Endpoints.d.ts +36 -36
- package/package.json +1 -1
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { createEntityAdapter, createSelector, } from "@reduxjs/toolkit";
|
|
2
|
+
import { salesApi } from "../api/salesApi";
|
|
3
|
+
const cargoConsolidationsAdapter = createEntityAdapter();
|
|
4
|
+
const cargoConsolidationsInitialState = cargoConsolidationsAdapter.getInitialState();
|
|
5
|
+
export const cargoConsolidationV1Endpoints = salesApi.injectEndpoints({
|
|
6
|
+
endpoints: (build) => ({
|
|
7
|
+
getCargoConsolidationsV1: build.query({
|
|
8
|
+
query: (args) => {
|
|
9
|
+
return {
|
|
10
|
+
url: `cargo_consolidations`,
|
|
11
|
+
params: args,
|
|
12
|
+
routePrefix: "/v1",
|
|
13
|
+
};
|
|
14
|
+
},
|
|
15
|
+
transformResponse: (responseData) => {
|
|
16
|
+
return cargoConsolidationsAdapter.setAll(cargoConsolidationsInitialState, responseData);
|
|
17
|
+
},
|
|
18
|
+
providesTags: ["cargoConsolidations"],
|
|
19
|
+
}),
|
|
20
|
+
getCargoConsolidationV1: build.query({
|
|
21
|
+
query: (id) => ({
|
|
22
|
+
url: `cargo_consolidations/${id}`,
|
|
23
|
+
routePrefix: "/v1",
|
|
24
|
+
}),
|
|
25
|
+
providesTags: (_result, _error, id) => [
|
|
26
|
+
{ type: "cargoConsolidations", id },
|
|
27
|
+
],
|
|
28
|
+
}),
|
|
29
|
+
createCargoConsolidationV1: build.mutation({
|
|
30
|
+
query: (body) => ({
|
|
31
|
+
method: "POST",
|
|
32
|
+
body,
|
|
33
|
+
url: `cargo_consolidations`,
|
|
34
|
+
routePrefix: "/v1",
|
|
35
|
+
}),
|
|
36
|
+
invalidatesTags: ["cargoConsolidations", "otrDispatches"],
|
|
37
|
+
}),
|
|
38
|
+
updateCargoConsolidationV1: build.mutation({
|
|
39
|
+
query: (args) => ({
|
|
40
|
+
method: "PUT",
|
|
41
|
+
body: args.body,
|
|
42
|
+
url: `cargo_consolidations/${args.id}`,
|
|
43
|
+
routePrefix: "/v1",
|
|
44
|
+
}),
|
|
45
|
+
invalidatesTags: (_result, _error, { id }) => [
|
|
46
|
+
{ type: "cargoConsolidations", id },
|
|
47
|
+
"cargoConsolidations",
|
|
48
|
+
"otrDispatches",
|
|
49
|
+
"cargoConsolidationCargoConsolidationCommodityPieces",
|
|
50
|
+
],
|
|
51
|
+
}),
|
|
52
|
+
deleteCargoConsolidationV1: build.mutation({
|
|
53
|
+
query: (id) => ({
|
|
54
|
+
method: "DELETE",
|
|
55
|
+
url: `cargo_consolidations/${id}`,
|
|
56
|
+
routePrefix: "/v1",
|
|
57
|
+
}),
|
|
58
|
+
invalidatesTags: [
|
|
59
|
+
"cargoConsolidations",
|
|
60
|
+
"otrDispatches",
|
|
61
|
+
"cargoConsolidationCargoConsolidationCommodityPieces",
|
|
62
|
+
],
|
|
63
|
+
}),
|
|
64
|
+
changeCargoConsolidationPaths: build.mutation({
|
|
65
|
+
query: ({ body, id }) => ({
|
|
66
|
+
method: "POST",
|
|
67
|
+
url: `cargo_consolidations/${id}/change_dispatch_paths.json`,
|
|
68
|
+
body,
|
|
69
|
+
routePrefix: "/v1",
|
|
70
|
+
}),
|
|
71
|
+
invalidatesTags: [
|
|
72
|
+
"cargoConsolidations",
|
|
73
|
+
"otrDispatches",
|
|
74
|
+
"cargoConsolidationCargoConsolidationCommodityPieces",
|
|
75
|
+
],
|
|
76
|
+
}),
|
|
77
|
+
getCargoConsolidationUserNotes: build.query({
|
|
78
|
+
query: (id) => {
|
|
79
|
+
return {
|
|
80
|
+
url: `cargo_consolidations/${id}/user_notes`,
|
|
81
|
+
routePrefix: "/v1",
|
|
82
|
+
};
|
|
83
|
+
},
|
|
84
|
+
}),
|
|
85
|
+
getCargoConsolidationCommodityPiecesByCargoConsolidation: build.query({
|
|
86
|
+
query: (args) => {
|
|
87
|
+
return {
|
|
88
|
+
url: `cargo_consolidations/${args.id}/commodity_pieces`,
|
|
89
|
+
params: args.params,
|
|
90
|
+
routePrefix: "/v1",
|
|
91
|
+
};
|
|
92
|
+
},
|
|
93
|
+
providesTags: ["cargoConsolidationCommodityPiecesByCargoConsolidation"],
|
|
94
|
+
}),
|
|
95
|
+
getCargoConsolidationCargoConsolidationCommodityPieces: build.query({
|
|
96
|
+
query: (args) => {
|
|
97
|
+
return {
|
|
98
|
+
url: `cargo_consolidations/${args.id}/cargo_consolidations_commodity_pieces`,
|
|
99
|
+
params: args.params,
|
|
100
|
+
routePrefix: "/v1",
|
|
101
|
+
};
|
|
102
|
+
},
|
|
103
|
+
providesTags: ["cargoConsolidationCargoConsolidationCommodityPieces"],
|
|
104
|
+
}),
|
|
105
|
+
}),
|
|
106
|
+
});
|
|
107
|
+
export const { useCreateCargoConsolidationV1Mutation, useDeleteCargoConsolidationV1Mutation, useGetCargoConsolidationV1Query, useGetCargoConsolidationsV1Query, useLazyGetCargoConsolidationV1Query, useLazyGetCargoConsolidationsV1Query, useUpdateCargoConsolidationV1Mutation, useGetCargoConsolidationUserNotesQuery, useLazyGetCargoConsolidationUserNotesQuery, useChangeCargoConsolidationPathsMutation, useGetCargoConsolidationCommodityPiecesByCargoConsolidationQuery, useLazyGetCargoConsolidationCommodityPiecesByCargoConsolidationQuery, useGetCargoConsolidationCargoConsolidationCommodityPiecesQuery, useLazyGetCargoConsolidationCargoConsolidationCommodityPiecesQuery, } = cargoConsolidationV1Endpoints;
|
|
108
|
+
export default cargoConsolidationV1Endpoints;
|
|
109
|
+
export const getCargoConsolidationsV1Selectors = (params) => {
|
|
110
|
+
return cargoConsolidationsAdapter.getSelectors((state) => {
|
|
111
|
+
return (createSelector(cargoConsolidationV1Endpoints.endpoints.getCargoConsolidationsV1.select(params), (cargoConsolidationsResult) => {
|
|
112
|
+
return cargoConsolidationsResult.data;
|
|
113
|
+
})(state) ?? cargoConsolidationsInitialState);
|
|
114
|
+
});
|
|
115
|
+
};
|
|
116
|
+
//# sourceMappingURL=cargoConsolidationV1Endpoints.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cargoConsolidationV1Endpoints.js","sourceRoot":"","sources":["../../../src/redux/cargoConsolidationV1/cargoConsolidationV1Endpoints.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/redux/cargoConsolidationV1/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,iCAAiC,CAAC"}
|
package/dist/redux/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export * from "./billingKickbackResponse";
|
|
|
18
18
|
export * from "./billingKickbackResponseAccessorial";
|
|
19
19
|
export * from "./billingMessage";
|
|
20
20
|
export * from "./billingNote";
|
|
21
|
-
export * from "./
|
|
21
|
+
export * from "./cargoConsolidationV1";
|
|
22
22
|
export * from "./cargoConsolidationCommodityPiece";
|
|
23
23
|
export * from "./carrier";
|
|
24
24
|
export * from "./carrierInsurance";
|
|
@@ -107,3 +107,4 @@ export * from "./rateWareXlActiveTariff";
|
|
|
107
107
|
export * from "./contractRate";
|
|
108
108
|
export * from "./contractRateRecord";
|
|
109
109
|
export * from "./customerRequestedArea";
|
|
110
|
+
export * from "./cargoConsolidation";
|
package/dist/redux/index.js
CHANGED
|
@@ -18,7 +18,7 @@ export * from "./billingKickbackResponse";
|
|
|
18
18
|
export * from "./billingKickbackResponseAccessorial";
|
|
19
19
|
export * from "./billingMessage";
|
|
20
20
|
export * from "./billingNote";
|
|
21
|
-
export * from "./
|
|
21
|
+
export * from "./cargoConsolidationV1";
|
|
22
22
|
export * from "./cargoConsolidationCommodityPiece";
|
|
23
23
|
export * from "./carrier";
|
|
24
24
|
export * from "./carrierInsurance";
|
|
@@ -107,4 +107,5 @@ export * from "./rateWareXlActiveTariff";
|
|
|
107
107
|
export * from "./contractRate";
|
|
108
108
|
export * from "./contractRateRecord";
|
|
109
109
|
export * from "./customerRequestedArea";
|
|
110
|
+
export * from "./cargoConsolidation";
|
|
110
111
|
//# sourceMappingURL=index.js.map
|
package/dist/redux/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/redux/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,OAAO,CAAC;AACtB,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/redux/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,OAAO,CAAC;AACtB,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC;AACvC,cAAc,oCAAoC,CAAC;AACnD,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,qBAAqB,CAAC;AACpC,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,SAAS,CAAC;AACxB,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EntityState } from "@reduxjs/toolkit";
|
|
2
|
-
import { AppointmentArrival_Entity, CarrierTenderV1_Entity, HosLog_Entity, LoadV1_Entity, QuoteAccessorialV1_Entity, QuoteRateRecord_Entity, RateReview_Entity, UserNoteV1_Entity, Dispatch_Entity,
|
|
2
|
+
import { AppointmentArrival_Entity, CarrierTenderV1_Entity, HosLog_Entity, LoadV1_Entity, QuoteAccessorialV1_Entity, QuoteRateRecord_Entity, RateReview_Entity, UserNoteV1_Entity, Dispatch_Entity, CargoConsolidationV1_Entity, Notification_Entity, Claim_Entity, BillingKickback_Entity } from "../../entities";
|
|
3
3
|
import { CommodityV1_Entity } from "../../entities/commodityV1";
|
|
4
4
|
import { LoadAdjustmentV1_Entity } from "../../entities/loadAdjustmentV1";
|
|
5
5
|
import { LoadExtraLite_Entity } from "../../entities/loadExtraLite";
|
|
@@ -63,7 +63,7 @@ export declare const loadV1Endpoints: import("@reduxjs/toolkit/query").Api<(args
|
|
|
63
63
|
getLoadSummaryConsolidationsV1: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
64
64
|
loadID: number;
|
|
65
65
|
params?: Record<string, unknown> | undefined;
|
|
66
|
-
}, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}> | PromiseLike<import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "accessorialsV1" | "activeCarriers" | "apiTenders" | "appointmentArrivals" | "appointmentIssueCategories" | "appointmentIssues" | "appointmentIssueSubcategories" | "appointmentNotes" | "appointmentNoteTypes" | "appointmentTrips" | "archerFiles" | "areas" | "assetNames" | "assets" | "assetTypes" | "attributeFields" | "billingKickbackResponseAccessorials" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbacks" | "billingMessages" | "billingNotes" | "cargoConsolidationCargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPiecesByCargoConsolidation" | "cargoConsolidations" | "carrierFiles" | "carrierInsurances" | "carrierNames" | "carrierPacketNotes" | "carrierPayContracts" | "carriers" | "carrierTenderAccessorials" | "carrierTenderDeductions" | "carrierTenderEdges" | "carrierTenderFiles" | "carrierTenderRateRecords" | "carrierTenders" | "carrierTendersV1" | "carrierV1" | "claimResponses" | "claims" | "claimStatuses" | "commodities" | "commoditiesV1" | "companyLocations" | "contacts" | "contracts" | "contractsRecords" | "creditTerms" | "customerBillingNotes" | "customerContracts" | "customerCredit" | "customerNames" | "customerPeople" | "customers" | "customersAccessorials" | "customersAccessorialsByCustomer" | "customersPeople" | "customersPeopleByCustomer" | "customerTrailers" | "customerTrailersByCustomer" | "deductions" | "defaultSettings" | "departmentPhones" | "dispatches" | "driverNames" | "drivers" | "driversV1" | "ediAccounts" | "ediLoadTenders" | "ediTransactions" | "employeeNames" | "files" | "flags" | "generalLedgerAccounts" | "genericTenders" | "holidays" | "invoiceAdjustments" | "invoiceLineItems" | "invoices" | "invoicesV1" | "loadAdjustments" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "loadBillingKickbacks" | "loadCommodities" | "loadExtraLites" | "loadFiles" | "customerFiles" | "loadQuoteAccessorials" | "loadRateReviews" | "loads" | "loadsAutocomplete" | "loadShipcons" | "loadsV1" | "loadTenders" | "loadTenderViews" | "loadUserNotesV1" | "locations" | "locationsFiles" | "locationsV1" | "locationsV1Accessorials" | "manualCheckCalls" | "nmfcClasses" | "nodeNames" | "nodes" | "nodeTypeNodes" | "nodeTypes" | "notifications" | "otrDispatches" | "people" | "personNames" | "positions" | "possibleIssueItems" | "quoteAccessorials" | "quoteAccessorialsV1" | "quotes" | "rateReviews" | "rejectionReasons" | "relayCodes" | "shipConDispatches" | "shipConDispatchesETAs" | "shipConETAs" | "shipConLastMapUpdate" | "shipcons" | "shipconsV1" | "summary_consolidationsV1" | "summary_dispatchesV1" | "tenders" | "trailerAvailabilities" | "trailerCodes" | "uninvoicedLoadsV1" | "unitsV1" | "userNotesV1" | "userSubscriptions" | "customersLocations" | "customersLocationsByCustomer" | "timeToPayReports" | "timeToPayReportsByCustomer" | "customerCreditLogs" | "customerCreditLogsByCustomer" | "customerCreditTypes" | "customerInvoices" | "uninvoicedLoadReports" | "customerStatuses" | "rateWareXlActiveTariffs" | "contractRates" | "contractRateRecords" | "contractRateRecordsByContractRates" | "customerRequestedAreas" | "customerRequestedAreasByCustomer" | "accountingInvoices",
|
|
66
|
+
}, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}> | PromiseLike<import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "accessorialsV1" | "activeCarriers" | "apiTenders" | "appointmentArrivals" | "appointmentIssueCategories" | "appointmentIssues" | "appointmentIssueSubcategories" | "appointmentNotes" | "appointmentNoteTypes" | "appointmentTrips" | "archerFiles" | "areas" | "assetNames" | "assets" | "assetTypes" | "attributeFields" | "billingKickbackResponseAccessorials" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbacks" | "billingMessages" | "billingNotes" | "cargoConsolidationCargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPiecesByCargoConsolidation" | "cargoConsolidations" | "carrierFiles" | "carrierInsurances" | "carrierNames" | "carrierPacketNotes" | "carrierPayContracts" | "carriers" | "carrierTenderAccessorials" | "carrierTenderDeductions" | "carrierTenderEdges" | "carrierTenderFiles" | "carrierTenderRateRecords" | "carrierTenders" | "carrierTendersV1" | "carrierV1" | "claimResponses" | "claims" | "claimStatuses" | "commodities" | "commoditiesV1" | "companyLocations" | "contacts" | "contracts" | "contractsRecords" | "creditTerms" | "customerBillingNotes" | "customerContracts" | "customerCredit" | "customerNames" | "customerPeople" | "customers" | "customersAccessorials" | "customersAccessorialsByCustomer" | "customersPeople" | "customersPeopleByCustomer" | "customerTrailers" | "customerTrailersByCustomer" | "deductions" | "defaultSettings" | "departmentPhones" | "dispatches" | "driverNames" | "drivers" | "driversV1" | "ediAccounts" | "ediLoadTenders" | "ediTransactions" | "employeeNames" | "files" | "flags" | "generalLedgerAccounts" | "genericTenders" | "holidays" | "invoiceAdjustments" | "invoiceLineItems" | "invoices" | "invoicesV1" | "loadAdjustments" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "loadBillingKickbacks" | "loadCommodities" | "loadExtraLites" | "loadFiles" | "customerFiles" | "loadQuoteAccessorials" | "loadRateReviews" | "loads" | "loadsAutocomplete" | "loadShipcons" | "loadsV1" | "loadTenders" | "loadTenderViews" | "loadUserNotesV1" | "locations" | "locationsFiles" | "locationsV1" | "locationsV1Accessorials" | "manualCheckCalls" | "nmfcClasses" | "nodeNames" | "nodes" | "nodeTypeNodes" | "nodeTypes" | "notifications" | "otrDispatches" | "people" | "personNames" | "positions" | "possibleIssueItems" | "quoteAccessorials" | "quoteAccessorialsV1" | "quotes" | "rateReviews" | "rejectionReasons" | "relayCodes" | "shipConDispatches" | "shipConDispatchesETAs" | "shipConETAs" | "shipConLastMapUpdate" | "shipcons" | "shipconsV1" | "summary_consolidationsV1" | "summary_dispatchesV1" | "tenders" | "trailerAvailabilities" | "trailerCodes" | "uninvoicedLoadsV1" | "unitsV1" | "userNotesV1" | "userSubscriptions" | "customersLocations" | "customersLocationsByCustomer" | "timeToPayReports" | "timeToPayReportsByCustomer" | "customerCreditLogs" | "customerCreditLogsByCustomer" | "customerCreditTypes" | "customerInvoices" | "uninvoicedLoadReports" | "customerStatuses" | "rateWareXlActiveTariffs" | "contractRates" | "contractRateRecords" | "contractRateRecordsByContractRates" | "customerRequestedAreas" | "customerRequestedAreasByCustomer" | "accountingInvoices", CargoConsolidationV1_Entity[], "salesApi">;
|
|
67
67
|
calculateLoadCostV1: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
68
68
|
loadID: number;
|
|
69
69
|
params?: Record<string, unknown> | undefined;
|
|
@@ -5778,7 +5778,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5778
5778
|
endpointName?: string | undefined;
|
|
5779
5779
|
startedTimeStamp?: undefined;
|
|
5780
5780
|
isLoading: false;
|
|
5781
|
-
currentData?:
|
|
5781
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
5782
5782
|
isFetching: false;
|
|
5783
5783
|
isSuccess: false;
|
|
5784
5784
|
isError: false;
|
|
@@ -5794,7 +5794,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5794
5794
|
requestId?: string | undefined;
|
|
5795
5795
|
endpointName?: string | undefined;
|
|
5796
5796
|
startedTimeStamp?: number | undefined;
|
|
5797
|
-
currentData?:
|
|
5797
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
5798
5798
|
isUninitialized: false;
|
|
5799
5799
|
isSuccess: false;
|
|
5800
5800
|
isError: false;
|
|
@@ -5811,13 +5811,13 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5811
5811
|
endpointName?: string | undefined;
|
|
5812
5812
|
startedTimeStamp?: number | undefined;
|
|
5813
5813
|
isLoading: false;
|
|
5814
|
-
currentData?:
|
|
5814
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
5815
5815
|
isUninitialized: false;
|
|
5816
5816
|
isError: false;
|
|
5817
5817
|
isSuccess: true;
|
|
5818
5818
|
isFetching: true;
|
|
5819
5819
|
error: undefined;
|
|
5820
|
-
data:
|
|
5820
|
+
data: CargoConsolidationV1_Entity[];
|
|
5821
5821
|
fulfilledTimeStamp: number;
|
|
5822
5822
|
} | {
|
|
5823
5823
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
@@ -5834,12 +5834,12 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5834
5834
|
isSuccess: true;
|
|
5835
5835
|
isFetching: false;
|
|
5836
5836
|
error: undefined;
|
|
5837
|
-
data:
|
|
5837
|
+
data: CargoConsolidationV1_Entity[];
|
|
5838
5838
|
fulfilledTimeStamp: number;
|
|
5839
|
-
currentData:
|
|
5839
|
+
currentData: CargoConsolidationV1_Entity[];
|
|
5840
5840
|
} | {
|
|
5841
5841
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5842
|
-
data?:
|
|
5842
|
+
data?: CargoConsolidationV1_Entity[] | undefined;
|
|
5843
5843
|
fulfilledTimeStamp?: number | undefined;
|
|
5844
5844
|
originalArgs?: {
|
|
5845
5845
|
loadID: number;
|
|
@@ -5849,7 +5849,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5849
5849
|
endpointName?: string | undefined;
|
|
5850
5850
|
startedTimeStamp?: number | undefined;
|
|
5851
5851
|
isLoading: false;
|
|
5852
|
-
currentData?:
|
|
5852
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
5853
5853
|
isUninitialized: false;
|
|
5854
5854
|
isFetching: false;
|
|
5855
5855
|
isSuccess: false;
|
|
@@ -5875,7 +5875,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5875
5875
|
endpointName?: string | undefined;
|
|
5876
5876
|
startedTimeStamp?: undefined;
|
|
5877
5877
|
isLoading: false;
|
|
5878
|
-
currentData?:
|
|
5878
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
5879
5879
|
isFetching: false;
|
|
5880
5880
|
isSuccess: false;
|
|
5881
5881
|
isError: false;
|
|
@@ -5891,7 +5891,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5891
5891
|
requestId?: string | undefined;
|
|
5892
5892
|
endpointName?: string | undefined;
|
|
5893
5893
|
startedTimeStamp?: number | undefined;
|
|
5894
|
-
currentData?:
|
|
5894
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
5895
5895
|
isUninitialized: false;
|
|
5896
5896
|
isSuccess: false;
|
|
5897
5897
|
isError: false;
|
|
@@ -5908,13 +5908,13 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5908
5908
|
endpointName?: string | undefined;
|
|
5909
5909
|
startedTimeStamp?: number | undefined;
|
|
5910
5910
|
isLoading: false;
|
|
5911
|
-
currentData?:
|
|
5911
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
5912
5912
|
isUninitialized: false;
|
|
5913
5913
|
isError: false;
|
|
5914
5914
|
isSuccess: true;
|
|
5915
5915
|
isFetching: true;
|
|
5916
5916
|
error: undefined;
|
|
5917
|
-
data:
|
|
5917
|
+
data: CargoConsolidationV1_Entity[];
|
|
5918
5918
|
fulfilledTimeStamp: number;
|
|
5919
5919
|
} | {
|
|
5920
5920
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
@@ -5931,12 +5931,12 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5931
5931
|
isSuccess: true;
|
|
5932
5932
|
isFetching: false;
|
|
5933
5933
|
error: undefined;
|
|
5934
|
-
data:
|
|
5934
|
+
data: CargoConsolidationV1_Entity[];
|
|
5935
5935
|
fulfilledTimeStamp: number;
|
|
5936
|
-
currentData:
|
|
5936
|
+
currentData: CargoConsolidationV1_Entity[];
|
|
5937
5937
|
} | {
|
|
5938
5938
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
5939
|
-
data?:
|
|
5939
|
+
data?: CargoConsolidationV1_Entity[] | undefined;
|
|
5940
5940
|
fulfilledTimeStamp?: number | undefined;
|
|
5941
5941
|
originalArgs?: {
|
|
5942
5942
|
loadID: number;
|
|
@@ -5946,7 +5946,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5946
5946
|
endpointName?: string | undefined;
|
|
5947
5947
|
startedTimeStamp?: number | undefined;
|
|
5948
5948
|
isLoading: false;
|
|
5949
|
-
currentData?:
|
|
5949
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
5950
5950
|
isUninitialized: false;
|
|
5951
5951
|
isFetching: false;
|
|
5952
5952
|
isSuccess: false;
|
|
@@ -5959,7 +5959,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5959
5959
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
5960
5960
|
loadID: number;
|
|
5961
5961
|
params?: Record<string, unknown> | undefined;
|
|
5962
|
-
}, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}> | PromiseLike<import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "accessorialsV1" | "activeCarriers" | "apiTenders" | "appointmentArrivals" | "appointmentIssueCategories" | "appointmentIssues" | "appointmentIssueSubcategories" | "appointmentNotes" | "appointmentNoteTypes" | "appointmentTrips" | "archerFiles" | "areas" | "assetNames" | "assets" | "assetTypes" | "attributeFields" | "billingKickbackResponseAccessorials" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbacks" | "billingMessages" | "billingNotes" | "cargoConsolidationCargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPiecesByCargoConsolidation" | "cargoConsolidations" | "carrierFiles" | "carrierInsurances" | "carrierNames" | "carrierPacketNotes" | "carrierPayContracts" | "carriers" | "carrierTenderAccessorials" | "carrierTenderDeductions" | "carrierTenderEdges" | "carrierTenderFiles" | "carrierTenderRateRecords" | "carrierTenders" | "carrierTendersV1" | "carrierV1" | "claimResponses" | "claims" | "claimStatuses" | "commodities" | "commoditiesV1" | "companyLocations" | "contacts" | "contracts" | "contractsRecords" | "creditTerms" | "customerBillingNotes" | "customerContracts" | "customerCredit" | "customerNames" | "customerPeople" | "customers" | "customersAccessorials" | "customersAccessorialsByCustomer" | "customersPeople" | "customersPeopleByCustomer" | "customerTrailers" | "customerTrailersByCustomer" | "deductions" | "defaultSettings" | "departmentPhones" | "dispatches" | "driverNames" | "drivers" | "driversV1" | "ediAccounts" | "ediLoadTenders" | "ediTransactions" | "employeeNames" | "files" | "flags" | "generalLedgerAccounts" | "genericTenders" | "holidays" | "invoiceAdjustments" | "invoiceLineItems" | "invoices" | "invoicesV1" | "loadAdjustments" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "loadBillingKickbacks" | "loadCommodities" | "loadExtraLites" | "loadFiles" | "customerFiles" | "loadQuoteAccessorials" | "loadRateReviews" | "loads" | "loadsAutocomplete" | "loadShipcons" | "loadsV1" | "loadTenders" | "loadTenderViews" | "loadUserNotesV1" | "locations" | "locationsFiles" | "locationsV1" | "locationsV1Accessorials" | "manualCheckCalls" | "nmfcClasses" | "nodeNames" | "nodes" | "nodeTypeNodes" | "nodeTypes" | "notifications" | "otrDispatches" | "people" | "personNames" | "positions" | "possibleIssueItems" | "quoteAccessorials" | "quoteAccessorialsV1" | "quotes" | "rateReviews" | "rejectionReasons" | "relayCodes" | "shipConDispatches" | "shipConDispatchesETAs" | "shipConETAs" | "shipConLastMapUpdate" | "shipcons" | "shipconsV1" | "summary_consolidationsV1" | "summary_dispatchesV1" | "tenders" | "trailerAvailabilities" | "trailerCodes" | "uninvoicedLoadsV1" | "unitsV1" | "userNotesV1" | "userSubscriptions" | "customersLocations" | "customersLocationsByCustomer" | "timeToPayReports" | "timeToPayReportsByCustomer" | "customerCreditLogs" | "customerCreditLogsByCustomer" | "customerCreditTypes" | "customerInvoices" | "uninvoicedLoadReports" | "customerStatuses" | "rateWareXlActiveTariffs" | "contractRates" | "contractRateRecords" | "contractRateRecordsByContractRates" | "customerRequestedAreas" | "customerRequestedAreasByCustomer" | "accountingInvoices",
|
|
5962
|
+
}, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}> | PromiseLike<import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "accessorialsV1" | "activeCarriers" | "apiTenders" | "appointmentArrivals" | "appointmentIssueCategories" | "appointmentIssues" | "appointmentIssueSubcategories" | "appointmentNotes" | "appointmentNoteTypes" | "appointmentTrips" | "archerFiles" | "areas" | "assetNames" | "assets" | "assetTypes" | "attributeFields" | "billingKickbackResponseAccessorials" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbacks" | "billingMessages" | "billingNotes" | "cargoConsolidationCargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPiecesByCargoConsolidation" | "cargoConsolidations" | "carrierFiles" | "carrierInsurances" | "carrierNames" | "carrierPacketNotes" | "carrierPayContracts" | "carriers" | "carrierTenderAccessorials" | "carrierTenderDeductions" | "carrierTenderEdges" | "carrierTenderFiles" | "carrierTenderRateRecords" | "carrierTenders" | "carrierTendersV1" | "carrierV1" | "claimResponses" | "claims" | "claimStatuses" | "commodities" | "commoditiesV1" | "companyLocations" | "contacts" | "contracts" | "contractsRecords" | "creditTerms" | "customerBillingNotes" | "customerContracts" | "customerCredit" | "customerNames" | "customerPeople" | "customers" | "customersAccessorials" | "customersAccessorialsByCustomer" | "customersPeople" | "customersPeopleByCustomer" | "customerTrailers" | "customerTrailersByCustomer" | "deductions" | "defaultSettings" | "departmentPhones" | "dispatches" | "driverNames" | "drivers" | "driversV1" | "ediAccounts" | "ediLoadTenders" | "ediTransactions" | "employeeNames" | "files" | "flags" | "generalLedgerAccounts" | "genericTenders" | "holidays" | "invoiceAdjustments" | "invoiceLineItems" | "invoices" | "invoicesV1" | "loadAdjustments" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "loadBillingKickbacks" | "loadCommodities" | "loadExtraLites" | "loadFiles" | "customerFiles" | "loadQuoteAccessorials" | "loadRateReviews" | "loads" | "loadsAutocomplete" | "loadShipcons" | "loadsV1" | "loadTenders" | "loadTenderViews" | "loadUserNotesV1" | "locations" | "locationsFiles" | "locationsV1" | "locationsV1Accessorials" | "manualCheckCalls" | "nmfcClasses" | "nodeNames" | "nodes" | "nodeTypeNodes" | "nodeTypes" | "notifications" | "otrDispatches" | "people" | "personNames" | "positions" | "possibleIssueItems" | "quoteAccessorials" | "quoteAccessorialsV1" | "quotes" | "rateReviews" | "rejectionReasons" | "relayCodes" | "shipConDispatches" | "shipConDispatchesETAs" | "shipConETAs" | "shipConLastMapUpdate" | "shipcons" | "shipconsV1" | "summary_consolidationsV1" | "summary_dispatchesV1" | "tenders" | "trailerAvailabilities" | "trailerCodes" | "uninvoicedLoadsV1" | "unitsV1" | "userNotesV1" | "userSubscriptions" | "customersLocations" | "customersLocationsByCustomer" | "timeToPayReports" | "timeToPayReportsByCustomer" | "customerCreditLogs" | "customerCreditLogsByCustomer" | "customerCreditTypes" | "customerInvoices" | "uninvoicedLoadReports" | "customerStatuses" | "rateWareXlActiveTariffs" | "contractRates" | "contractRateRecords" | "contractRateRecordsByContractRates" | "customerRequestedAreas" | "customerRequestedAreasByCustomer" | "accountingInvoices", CargoConsolidationV1_Entity[], "salesApi">>;
|
|
5963
5963
|
}, useLazyGetLoadSummaryConsolidationsV1Query: <R extends Record<string, any> = ({
|
|
5964
5964
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
5965
5965
|
data?: undefined;
|
|
@@ -5970,7 +5970,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5970
5970
|
endpointName?: string | undefined;
|
|
5971
5971
|
startedTimeStamp?: undefined;
|
|
5972
5972
|
isLoading: false;
|
|
5973
|
-
currentData?:
|
|
5973
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
5974
5974
|
isFetching: false;
|
|
5975
5975
|
isSuccess: false;
|
|
5976
5976
|
isError: false;
|
|
@@ -5986,7 +5986,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
5986
5986
|
requestId?: string | undefined;
|
|
5987
5987
|
endpointName?: string | undefined;
|
|
5988
5988
|
startedTimeStamp?: number | undefined;
|
|
5989
|
-
currentData?:
|
|
5989
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
5990
5990
|
isUninitialized: false;
|
|
5991
5991
|
isSuccess: false;
|
|
5992
5992
|
isError: false;
|
|
@@ -6003,13 +6003,13 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
6003
6003
|
endpointName?: string | undefined;
|
|
6004
6004
|
startedTimeStamp?: number | undefined;
|
|
6005
6005
|
isLoading: false;
|
|
6006
|
-
currentData?:
|
|
6006
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
6007
6007
|
isUninitialized: false;
|
|
6008
6008
|
isError: false;
|
|
6009
6009
|
isSuccess: true;
|
|
6010
6010
|
isFetching: true;
|
|
6011
6011
|
error: undefined;
|
|
6012
|
-
data:
|
|
6012
|
+
data: CargoConsolidationV1_Entity[];
|
|
6013
6013
|
fulfilledTimeStamp: number;
|
|
6014
6014
|
} | {
|
|
6015
6015
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
@@ -6026,12 +6026,12 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
6026
6026
|
isSuccess: true;
|
|
6027
6027
|
isFetching: false;
|
|
6028
6028
|
error: undefined;
|
|
6029
|
-
data:
|
|
6029
|
+
data: CargoConsolidationV1_Entity[];
|
|
6030
6030
|
fulfilledTimeStamp: number;
|
|
6031
|
-
currentData:
|
|
6031
|
+
currentData: CargoConsolidationV1_Entity[];
|
|
6032
6032
|
} | {
|
|
6033
6033
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
6034
|
-
data?:
|
|
6034
|
+
data?: CargoConsolidationV1_Entity[] | undefined;
|
|
6035
6035
|
fulfilledTimeStamp?: number | undefined;
|
|
6036
6036
|
originalArgs?: {
|
|
6037
6037
|
loadID: number;
|
|
@@ -6041,7 +6041,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
6041
6041
|
endpointName?: string | undefined;
|
|
6042
6042
|
startedTimeStamp?: number | undefined;
|
|
6043
6043
|
isLoading: false;
|
|
6044
|
-
currentData?:
|
|
6044
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
6045
6045
|
isUninitialized: false;
|
|
6046
6046
|
isFetching: false;
|
|
6047
6047
|
isSuccess: false;
|
|
@@ -6061,7 +6061,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
6061
6061
|
endpointName?: string | undefined;
|
|
6062
6062
|
startedTimeStamp?: undefined;
|
|
6063
6063
|
isLoading: false;
|
|
6064
|
-
currentData?:
|
|
6064
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
6065
6065
|
isFetching: false;
|
|
6066
6066
|
isSuccess: false;
|
|
6067
6067
|
isError: false;
|
|
@@ -6077,7 +6077,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
6077
6077
|
requestId?: string | undefined;
|
|
6078
6078
|
endpointName?: string | undefined;
|
|
6079
6079
|
startedTimeStamp?: number | undefined;
|
|
6080
|
-
currentData?:
|
|
6080
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
6081
6081
|
isUninitialized: false;
|
|
6082
6082
|
isSuccess: false;
|
|
6083
6083
|
isError: false;
|
|
@@ -6094,13 +6094,13 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
6094
6094
|
endpointName?: string | undefined;
|
|
6095
6095
|
startedTimeStamp?: number | undefined;
|
|
6096
6096
|
isLoading: false;
|
|
6097
|
-
currentData?:
|
|
6097
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
6098
6098
|
isUninitialized: false;
|
|
6099
6099
|
isError: false;
|
|
6100
6100
|
isSuccess: true;
|
|
6101
6101
|
isFetching: true;
|
|
6102
6102
|
error: undefined;
|
|
6103
|
-
data:
|
|
6103
|
+
data: CargoConsolidationV1_Entity[];
|
|
6104
6104
|
fulfilledTimeStamp: number;
|
|
6105
6105
|
} | {
|
|
6106
6106
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
@@ -6117,12 +6117,12 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
6117
6117
|
isSuccess: true;
|
|
6118
6118
|
isFetching: false;
|
|
6119
6119
|
error: undefined;
|
|
6120
|
-
data:
|
|
6120
|
+
data: CargoConsolidationV1_Entity[];
|
|
6121
6121
|
fulfilledTimeStamp: number;
|
|
6122
|
-
currentData:
|
|
6122
|
+
currentData: CargoConsolidationV1_Entity[];
|
|
6123
6123
|
} | {
|
|
6124
6124
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
6125
|
-
data?:
|
|
6125
|
+
data?: CargoConsolidationV1_Entity[] | undefined;
|
|
6126
6126
|
fulfilledTimeStamp?: number | undefined;
|
|
6127
6127
|
originalArgs?: {
|
|
6128
6128
|
loadID: number;
|
|
@@ -6132,7 +6132,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
6132
6132
|
endpointName?: string | undefined;
|
|
6133
6133
|
startedTimeStamp?: number | undefined;
|
|
6134
6134
|
isLoading: false;
|
|
6135
|
-
currentData?:
|
|
6135
|
+
currentData?: CargoConsolidationV1_Entity[] | undefined;
|
|
6136
6136
|
isUninitialized: false;
|
|
6137
6137
|
isFetching: false;
|
|
6138
6138
|
isSuccess: false;
|
|
@@ -6147,7 +6147,7 @@ export declare const useGetLoadV1Query: <R extends Record<string, any> = ({
|
|
|
6147
6147
|
}, preferCacheValue?: boolean | undefined) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6148
6148
|
loadID: number;
|
|
6149
6149
|
params?: Record<string, unknown> | undefined;
|
|
6150
|
-
}, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}> | PromiseLike<import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "accessorialsV1" | "activeCarriers" | "apiTenders" | "appointmentArrivals" | "appointmentIssueCategories" | "appointmentIssues" | "appointmentIssueSubcategories" | "appointmentNotes" | "appointmentNoteTypes" | "appointmentTrips" | "archerFiles" | "areas" | "assetNames" | "assets" | "assetTypes" | "attributeFields" | "billingKickbackResponseAccessorials" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbacks" | "billingMessages" | "billingNotes" | "cargoConsolidationCargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPiecesByCargoConsolidation" | "cargoConsolidations" | "carrierFiles" | "carrierInsurances" | "carrierNames" | "carrierPacketNotes" | "carrierPayContracts" | "carriers" | "carrierTenderAccessorials" | "carrierTenderDeductions" | "carrierTenderEdges" | "carrierTenderFiles" | "carrierTenderRateRecords" | "carrierTenders" | "carrierTendersV1" | "carrierV1" | "claimResponses" | "claims" | "claimStatuses" | "commodities" | "commoditiesV1" | "companyLocations" | "contacts" | "contracts" | "contractsRecords" | "creditTerms" | "customerBillingNotes" | "customerContracts" | "customerCredit" | "customerNames" | "customerPeople" | "customers" | "customersAccessorials" | "customersAccessorialsByCustomer" | "customersPeople" | "customersPeopleByCustomer" | "customerTrailers" | "customerTrailersByCustomer" | "deductions" | "defaultSettings" | "departmentPhones" | "dispatches" | "driverNames" | "drivers" | "driversV1" | "ediAccounts" | "ediLoadTenders" | "ediTransactions" | "employeeNames" | "files" | "flags" | "generalLedgerAccounts" | "genericTenders" | "holidays" | "invoiceAdjustments" | "invoiceLineItems" | "invoices" | "invoicesV1" | "loadAdjustments" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "loadBillingKickbacks" | "loadCommodities" | "loadExtraLites" | "loadFiles" | "customerFiles" | "loadQuoteAccessorials" | "loadRateReviews" | "loads" | "loadsAutocomplete" | "loadShipcons" | "loadsV1" | "loadTenders" | "loadTenderViews" | "loadUserNotesV1" | "locations" | "locationsFiles" | "locationsV1" | "locationsV1Accessorials" | "manualCheckCalls" | "nmfcClasses" | "nodeNames" | "nodes" | "nodeTypeNodes" | "nodeTypes" | "notifications" | "otrDispatches" | "people" | "personNames" | "positions" | "possibleIssueItems" | "quoteAccessorials" | "quoteAccessorialsV1" | "quotes" | "rateReviews" | "rejectionReasons" | "relayCodes" | "shipConDispatches" | "shipConDispatchesETAs" | "shipConETAs" | "shipConLastMapUpdate" | "shipcons" | "shipconsV1" | "summary_consolidationsV1" | "summary_dispatchesV1" | "tenders" | "trailerAvailabilities" | "trailerCodes" | "uninvoicedLoadsV1" | "unitsV1" | "userNotesV1" | "userSubscriptions" | "customersLocations" | "customersLocationsByCustomer" | "timeToPayReports" | "timeToPayReportsByCustomer" | "customerCreditLogs" | "customerCreditLogsByCustomer" | "customerCreditTypes" | "customerInvoices" | "uninvoicedLoadReports" | "customerStatuses" | "rateWareXlActiveTariffs" | "contractRates" | "contractRateRecords" | "contractRateRecordsByContractRates" | "customerRequestedAreas" | "customerRequestedAreasByCustomer" | "accountingInvoices",
|
|
6150
|
+
}, (args: any, api: import("@reduxjs/toolkit/query").BaseQueryApi) => import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}> | PromiseLike<import("@reduxjs/toolkit/query").QueryReturnValue<unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}>>, "accessorialsV1" | "activeCarriers" | "apiTenders" | "appointmentArrivals" | "appointmentIssueCategories" | "appointmentIssues" | "appointmentIssueSubcategories" | "appointmentNotes" | "appointmentNoteTypes" | "appointmentTrips" | "archerFiles" | "areas" | "assetNames" | "assets" | "assetTypes" | "attributeFields" | "billingKickbackResponseAccessorials" | "billingKickbackResponses" | "billingKickbackResponsesByKickbackID" | "billingKickbacks" | "billingMessages" | "billingNotes" | "cargoConsolidationCargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPieces" | "cargoConsolidationCommodityPiecesByCargoConsolidation" | "cargoConsolidations" | "carrierFiles" | "carrierInsurances" | "carrierNames" | "carrierPacketNotes" | "carrierPayContracts" | "carriers" | "carrierTenderAccessorials" | "carrierTenderDeductions" | "carrierTenderEdges" | "carrierTenderFiles" | "carrierTenderRateRecords" | "carrierTenders" | "carrierTendersV1" | "carrierV1" | "claimResponses" | "claims" | "claimStatuses" | "commodities" | "commoditiesV1" | "companyLocations" | "contacts" | "contracts" | "contractsRecords" | "creditTerms" | "customerBillingNotes" | "customerContracts" | "customerCredit" | "customerNames" | "customerPeople" | "customers" | "customersAccessorials" | "customersAccessorialsByCustomer" | "customersPeople" | "customersPeopleByCustomer" | "customerTrailers" | "customerTrailersByCustomer" | "deductions" | "defaultSettings" | "departmentPhones" | "dispatches" | "driverNames" | "drivers" | "driversV1" | "ediAccounts" | "ediLoadTenders" | "ediTransactions" | "employeeNames" | "files" | "flags" | "generalLedgerAccounts" | "genericTenders" | "holidays" | "invoiceAdjustments" | "invoiceLineItems" | "invoices" | "invoicesV1" | "loadAdjustments" | "loadAdjustmentsByLoad" | "loadAdjustmentsV1" | "loadBillingKickbacks" | "loadCommodities" | "loadExtraLites" | "loadFiles" | "customerFiles" | "loadQuoteAccessorials" | "loadRateReviews" | "loads" | "loadsAutocomplete" | "loadShipcons" | "loadsV1" | "loadTenders" | "loadTenderViews" | "loadUserNotesV1" | "locations" | "locationsFiles" | "locationsV1" | "locationsV1Accessorials" | "manualCheckCalls" | "nmfcClasses" | "nodeNames" | "nodes" | "nodeTypeNodes" | "nodeTypes" | "notifications" | "otrDispatches" | "people" | "personNames" | "positions" | "possibleIssueItems" | "quoteAccessorials" | "quoteAccessorialsV1" | "quotes" | "rateReviews" | "rejectionReasons" | "relayCodes" | "shipConDispatches" | "shipConDispatchesETAs" | "shipConETAs" | "shipConLastMapUpdate" | "shipcons" | "shipconsV1" | "summary_consolidationsV1" | "summary_dispatchesV1" | "tenders" | "trailerAvailabilities" | "trailerCodes" | "uninvoicedLoadsV1" | "unitsV1" | "userNotesV1" | "userSubscriptions" | "customersLocations" | "customersLocationsByCustomer" | "timeToPayReports" | "timeToPayReportsByCustomer" | "customerCreditLogs" | "customerCreditLogsByCustomer" | "customerCreditTypes" | "customerInvoices" | "uninvoicedLoadReports" | "customerStatuses" | "rateWareXlActiveTariffs" | "contractRates" | "contractRateRecords" | "contractRateRecordsByContractRates" | "customerRequestedAreas" | "customerRequestedAreasByCustomer" | "accountingInvoices", CargoConsolidationV1_Entity[], "salesApi">>, [R][R extends any ? 0 : never], {
|
|
6151
6151
|
lastArg: {
|
|
6152
6152
|
loadID: number;
|
|
6153
6153
|
params?: Record<string, unknown> | undefined;
|