@nerdjs/sales-kit 3.1.19 → 3.1.20
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/asset/asset.d.ts +2 -111
- package/dist/entities/asset/asset.js +5 -223
- package/dist/entities/asset/asset.js.map +1 -1
- package/dist/entities/assetV1/assetV1.d.ts +116 -0
- package/dist/entities/assetV1/assetV1.js +252 -0
- package/dist/entities/assetV1/assetV1.js.map +1 -0
- package/dist/entities/assetV1/helper.d.ts +5 -0
- package/dist/entities/assetV1/helper.js +15 -0
- package/dist/entities/assetV1/helper.js.map +1 -0
- package/dist/entities/assetV1/index.d.ts +2 -0
- package/dist/entities/assetV1/index.js +3 -0
- package/dist/entities/assetV1/index.js.map +1 -0
- package/dist/entities/index.d.ts +2 -1
- package/dist/entities/index.js +2 -1
- package/dist/entities/index.js.map +1 -1
- package/dist/hooks/carrierTenderPanel/assetAutocomplete.js +3 -3
- package/dist/hooks/carrierTenderPanel/assetAutocomplete.js.map +1 -1
- package/dist/hooks/carrierTenderPanel/carrierWidget.js +3 -3
- package/dist/hooks/carrierTenderPanel/carrierWidget.js.map +1 -1
- package/dist/hooks/carrierTenderPanel/rentalInput.d.ts +2 -2
- package/dist/hooks/carrierTenderPanel/rentalInput.js +2 -2
- package/dist/hooks/carrierTenderPanel/rentalInput.js.map +1 -1
- package/dist/redux/asset/assetEndpoints.d.ts +12 -582
- package/dist/redux/asset/assetEndpoints.js +8 -54
- package/dist/redux/asset/assetEndpoints.js.map +1 -1
- package/dist/redux/assetV1/assetV1Endpoints.d.ts +1612 -0
- package/dist/redux/assetV1/assetV1Endpoints.js +106 -0
- package/dist/redux/assetV1/assetV1Endpoints.js.map +1 -0
- package/dist/redux/assetV1/index.d.ts +2 -0
- package/dist/redux/assetV1/index.js +3 -0
- package/dist/redux/assetV1/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/railTenderV1/railTenderV1Endpoints.d.ts +161 -0
- package/dist/redux/railTenderV1/railTenderV1Endpoints.js +9 -1
- package/dist/redux/railTenderV1/railTenderV1Endpoints.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { createEntityAdapter, createSelector, } from "@reduxjs/toolkit";
|
|
2
|
+
import { salesApi } from "../api/salesApi";
|
|
3
|
+
const assetsAdapter = createEntityAdapter();
|
|
4
|
+
const assetsInitialState = assetsAdapter.getInitialState();
|
|
5
|
+
const assetNamesFilteredAdapter = createEntityAdapter();
|
|
6
|
+
const assetNamesFilteredInitialState = assetNamesFilteredAdapter.getInitialState();
|
|
7
|
+
const assetNamesAdapter = createEntityAdapter();
|
|
8
|
+
const assetNamesInitialState = assetNamesAdapter.getInitialState();
|
|
9
|
+
export const assetV1Endpoints = salesApi.injectEndpoints({
|
|
10
|
+
endpoints: (build) => ({
|
|
11
|
+
getAssetsV1: build.query({
|
|
12
|
+
query: (args) => {
|
|
13
|
+
return {
|
|
14
|
+
url: `assets`,
|
|
15
|
+
params: args,
|
|
16
|
+
routePrefix: "/v1",
|
|
17
|
+
};
|
|
18
|
+
},
|
|
19
|
+
transformResponse: (responseData) => {
|
|
20
|
+
return assetsAdapter.setAll(assetsInitialState, responseData);
|
|
21
|
+
},
|
|
22
|
+
providesTags: ["assets"],
|
|
23
|
+
}),
|
|
24
|
+
getAssetV1: build.query({
|
|
25
|
+
query: (id) => ({ url: `assets/${id}`, routePrefix: "/v1" }),
|
|
26
|
+
providesTags: (_result, _error, id) => [{ type: "assets", id }],
|
|
27
|
+
}),
|
|
28
|
+
createAssetV1: build.mutation({
|
|
29
|
+
query: (body) => ({
|
|
30
|
+
method: "POST",
|
|
31
|
+
body,
|
|
32
|
+
url: `assets`,
|
|
33
|
+
routePrefix: "/v1",
|
|
34
|
+
}),
|
|
35
|
+
invalidatesTags: ["assets", "assetNames", "assetNamesFiltered"],
|
|
36
|
+
}),
|
|
37
|
+
updateAssetV1: build.mutation({
|
|
38
|
+
query: (args) => ({
|
|
39
|
+
method: "PUT",
|
|
40
|
+
body: args.body,
|
|
41
|
+
url: `assets/${args.id}`,
|
|
42
|
+
routePrefix: "/v1",
|
|
43
|
+
}),
|
|
44
|
+
invalidatesTags: (_result, _error, { id }) => [
|
|
45
|
+
{ type: "assets", id },
|
|
46
|
+
"assets",
|
|
47
|
+
"assetNames",
|
|
48
|
+
"assetNamesFiltered",
|
|
49
|
+
],
|
|
50
|
+
}),
|
|
51
|
+
deleteAssetV1: build.mutation({
|
|
52
|
+
query: (id) => ({
|
|
53
|
+
method: "DELETE",
|
|
54
|
+
url: `assets/${id}`,
|
|
55
|
+
routePrefix: "/v1",
|
|
56
|
+
}),
|
|
57
|
+
invalidatesTags: ["assets", "assetNames", "assetNamesFiltered"],
|
|
58
|
+
}),
|
|
59
|
+
getAssetNamesFilteredV1: build.query({
|
|
60
|
+
query: (args) => ({
|
|
61
|
+
url: `assets/asset_names_filtered`,
|
|
62
|
+
params: args,
|
|
63
|
+
routePrefix: "/v1",
|
|
64
|
+
}),
|
|
65
|
+
transformResponse: (responseData) => {
|
|
66
|
+
return assetNamesFilteredAdapter.setAll(assetNamesFilteredInitialState, responseData);
|
|
67
|
+
},
|
|
68
|
+
providesTags: ["assetNamesFiltered"],
|
|
69
|
+
}),
|
|
70
|
+
getAssetNamesV1: build.query({
|
|
71
|
+
query: (args) => ({
|
|
72
|
+
url: `assets/asset_names`,
|
|
73
|
+
params: args,
|
|
74
|
+
routePrefix: "/v1",
|
|
75
|
+
}),
|
|
76
|
+
transformResponse: (responseData) => {
|
|
77
|
+
return assetNamesAdapter.setAll(assetNamesInitialState, responseData);
|
|
78
|
+
},
|
|
79
|
+
providesTags: ["assetNames"],
|
|
80
|
+
}),
|
|
81
|
+
}),
|
|
82
|
+
});
|
|
83
|
+
export const { useCreateAssetV1Mutation, useDeleteAssetV1Mutation, useGetAssetNamesFilteredV1Query, useGetAssetNamesV1Query, useGetAssetV1Query, useGetAssetsV1Query, useLazyGetAssetNamesFilteredV1Query, useLazyGetAssetNamesV1Query, useLazyGetAssetV1Query, useLazyGetAssetsV1Query, useUpdateAssetV1Mutation, } = assetV1Endpoints;
|
|
84
|
+
export default assetV1Endpoints;
|
|
85
|
+
export const getAssetsV1Selectors = (params) => {
|
|
86
|
+
return assetsAdapter.getSelectors((state) => {
|
|
87
|
+
return (createSelector(assetV1Endpoints.endpoints.getAssetsV1.select(params), (assetsResult) => {
|
|
88
|
+
return assetsResult.data;
|
|
89
|
+
})(state) ?? assetsInitialState);
|
|
90
|
+
});
|
|
91
|
+
};
|
|
92
|
+
export const getAssetNamesFilteredV1Selectors = (params) => {
|
|
93
|
+
return assetNamesFilteredAdapter.getSelectors((state) => {
|
|
94
|
+
return (createSelector(assetV1Endpoints.endpoints.getAssetNamesFilteredV1.select(params), (assetsResult) => {
|
|
95
|
+
return assetsResult.data;
|
|
96
|
+
})(state) ?? assetNamesFilteredInitialState);
|
|
97
|
+
});
|
|
98
|
+
};
|
|
99
|
+
export const getAssetNamesV1Selectors = (params) => {
|
|
100
|
+
return assetNamesAdapter.getSelectors((state) => {
|
|
101
|
+
return (createSelector(assetV1Endpoints.endpoints.getAssetNamesV1.select(params), (assetsResult) => {
|
|
102
|
+
return assetsResult.data;
|
|
103
|
+
})(state) ?? assetNamesInitialState);
|
|
104
|
+
});
|
|
105
|
+
};
|
|
106
|
+
//# sourceMappingURL=assetV1Endpoints.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assetV1Endpoints.js","sourceRoot":"","sources":["../../../src/redux/assetV1/assetV1Endpoints.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/redux/assetV1/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC"}
|
package/dist/redux/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export * from "./appointmentNoteType";
|
|
|
10
10
|
export * from "./appointmentTrip";
|
|
11
11
|
export * from "./archerFile";
|
|
12
12
|
export * from "./area";
|
|
13
|
-
export * from "./
|
|
13
|
+
export * from "./assetV1";
|
|
14
14
|
export * from "./assetType";
|
|
15
15
|
export * from "./attributeField";
|
|
16
16
|
export * from "./processPDF";
|
|
@@ -119,3 +119,4 @@ export * from "./carrierTenderAccounting";
|
|
|
119
119
|
export * from "./railTender";
|
|
120
120
|
export * from "./railTenderV1";
|
|
121
121
|
export * from "./railInvoiceV1";
|
|
122
|
+
export * from "./asset";
|
package/dist/redux/index.js
CHANGED
|
@@ -10,7 +10,7 @@ export * from "./appointmentNoteType";
|
|
|
10
10
|
export * from "./appointmentTrip";
|
|
11
11
|
export * from "./archerFile";
|
|
12
12
|
export * from "./area";
|
|
13
|
-
export * from "./
|
|
13
|
+
export * from "./assetV1";
|
|
14
14
|
export * from "./assetType";
|
|
15
15
|
export * from "./attributeField";
|
|
16
16
|
export * from "./processPDF";
|
|
@@ -119,4 +119,5 @@ export * from "./carrierTenderAccounting";
|
|
|
119
119
|
export * from "./railTender";
|
|
120
120
|
export * from "./railTenderV1";
|
|
121
121
|
export * from "./railInvoiceV1";
|
|
122
|
+
export * from "./asset";
|
|
122
123
|
//# 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,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/redux/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -14,6 +14,7 @@ export declare const railTenderV1Endpoints: import("@reduxjs/toolkit/query").Api
|
|
|
14
14
|
}, (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" | "customersLight" | "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" | "customerPendingLoads" | "arTransactions" | "paymentsV1" | "invoicePaymentsV1" | "invoicePaymentsByPaymentIDV1" | "paymentFiles" | "tenderStatusesV1" | "carrierTendersAccounting" | "customerCreditStatus" | "railTenders" | "assetNamesFiltered" | "railTendersV1" | "railInvoicesV1" | "railInvoiceFiles", void, "salesApi", unknown>;
|
|
15
15
|
deleteRailTenderV1: import("@reduxjs/toolkit/query").MutationDefinition<number, (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" | "customersLight" | "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" | "customerPendingLoads" | "arTransactions" | "paymentsV1" | "invoicePaymentsV1" | "invoicePaymentsByPaymentIDV1" | "paymentFiles" | "tenderStatusesV1" | "carrierTendersAccounting" | "customerCreditStatus" | "railTenders" | "assetNamesFiltered" | "railTendersV1" | "railInvoicesV1" | "railInvoiceFiles", void, "salesApi", unknown>;
|
|
16
16
|
recalculateRailTenderV1: import("@reduxjs/toolkit/query").MutationDefinition<number, (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" | "customersLight" | "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" | "customerPendingLoads" | "arTransactions" | "paymentsV1" | "invoicePaymentsV1" | "invoicePaymentsByPaymentIDV1" | "paymentFiles" | "tenderStatusesV1" | "carrierTendersAccounting" | "customerCreditStatus" | "railTenders" | "assetNamesFiltered" | "railTendersV1" | "railInvoicesV1" | "railInvoiceFiles", void, "salesApi", unknown>;
|
|
17
|
+
ingateRailTenderV1: import("@reduxjs/toolkit/query").MutationDefinition<number, (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" | "customersLight" | "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" | "customerPendingLoads" | "arTransactions" | "paymentsV1" | "invoicePaymentsV1" | "invoicePaymentsByPaymentIDV1" | "paymentFiles" | "tenderStatusesV1" | "carrierTendersAccounting" | "customerCreditStatus" | "railTenders" | "assetNamesFiltered" | "railTendersV1" | "railInvoicesV1" | "railInvoiceFiles", void, "salesApi", unknown>;
|
|
17
18
|
}, "salesApi", "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" | "customersLight" | "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" | "customerPendingLoads" | "arTransactions" | "paymentsV1" | "invoicePaymentsV1" | "invoicePaymentsByPaymentIDV1" | "paymentFiles" | "tenderStatusesV1" | "carrierTendersAccounting" | "customerCreditStatus" | "railTenders" | "assetNamesFiltered" | "railTendersV1" | "railInvoicesV1" | "railInvoiceFiles", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
18
19
|
export declare const useGetRailTenderV1Query: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
19
20
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -1202,6 +1203,166 @@ export declare const useGetRailTenderV1Query: <R extends Record<string, any> = i
|
|
|
1202
1203
|
} | undefined) => readonly [(arg: number) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<number, (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" | "customersLight" | "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" | "customerPendingLoads" | "arTransactions" | "paymentsV1" | "invoicePaymentsV1" | "invoicePaymentsByPaymentIDV1" | "paymentFiles" | "tenderStatusesV1" | "carrierTendersAccounting" | "customerCreditStatus" | "railTenders" | "assetNamesFiltered" | "railTendersV1" | "railInvoicesV1" | "railInvoiceFiles", void, "salesApi", unknown>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1203
1204
|
originalArgs?: number | undefined;
|
|
1204
1205
|
reset: () => void;
|
|
1206
|
+
}], useIngateRailTenderV1Mutation: <R extends Record<string, any> = ({
|
|
1207
|
+
requestId?: undefined;
|
|
1208
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1209
|
+
data?: undefined;
|
|
1210
|
+
error?: undefined;
|
|
1211
|
+
endpointName?: string;
|
|
1212
|
+
startedTimeStamp?: undefined;
|
|
1213
|
+
fulfilledTimeStamp?: undefined;
|
|
1214
|
+
} & {
|
|
1215
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1216
|
+
isUninitialized: true;
|
|
1217
|
+
isLoading: false;
|
|
1218
|
+
isSuccess: false;
|
|
1219
|
+
isError: false;
|
|
1220
|
+
}) | ({
|
|
1221
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1222
|
+
} & Omit<{
|
|
1223
|
+
requestId: string;
|
|
1224
|
+
data?: void | undefined;
|
|
1225
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1226
|
+
endpointName: string;
|
|
1227
|
+
startedTimeStamp: number;
|
|
1228
|
+
fulfilledTimeStamp?: number;
|
|
1229
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1230
|
+
requestId: string;
|
|
1231
|
+
data?: void | undefined;
|
|
1232
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1233
|
+
endpointName: string;
|
|
1234
|
+
startedTimeStamp: number;
|
|
1235
|
+
fulfilledTimeStamp?: number;
|
|
1236
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1237
|
+
error: undefined;
|
|
1238
|
+
} & {
|
|
1239
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1240
|
+
isUninitialized: false;
|
|
1241
|
+
isLoading: false;
|
|
1242
|
+
isSuccess: true;
|
|
1243
|
+
isError: false;
|
|
1244
|
+
}) | ({
|
|
1245
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1246
|
+
} & {
|
|
1247
|
+
requestId: string;
|
|
1248
|
+
data?: void | undefined;
|
|
1249
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1250
|
+
endpointName: string;
|
|
1251
|
+
startedTimeStamp: number;
|
|
1252
|
+
fulfilledTimeStamp?: number;
|
|
1253
|
+
} & {
|
|
1254
|
+
data?: undefined;
|
|
1255
|
+
} & {
|
|
1256
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1257
|
+
isUninitialized: false;
|
|
1258
|
+
isLoading: true;
|
|
1259
|
+
isSuccess: false;
|
|
1260
|
+
isError: false;
|
|
1261
|
+
}) | ({
|
|
1262
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1263
|
+
} & Omit<{
|
|
1264
|
+
requestId: string;
|
|
1265
|
+
data?: void | undefined;
|
|
1266
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1267
|
+
endpointName: string;
|
|
1268
|
+
startedTimeStamp: number;
|
|
1269
|
+
fulfilledTimeStamp?: number;
|
|
1270
|
+
}, "error"> & Required<Pick<{
|
|
1271
|
+
requestId: string;
|
|
1272
|
+
data?: void | undefined;
|
|
1273
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1274
|
+
endpointName: string;
|
|
1275
|
+
startedTimeStamp: number;
|
|
1276
|
+
fulfilledTimeStamp?: number;
|
|
1277
|
+
}, "error">> & {
|
|
1278
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1279
|
+
isUninitialized: false;
|
|
1280
|
+
isLoading: false;
|
|
1281
|
+
isSuccess: false;
|
|
1282
|
+
isError: true;
|
|
1283
|
+
})>(options?: {
|
|
1284
|
+
selectFromResult?: ((state: ({
|
|
1285
|
+
requestId?: undefined;
|
|
1286
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1287
|
+
data?: undefined;
|
|
1288
|
+
error?: undefined;
|
|
1289
|
+
endpointName?: string;
|
|
1290
|
+
startedTimeStamp?: undefined;
|
|
1291
|
+
fulfilledTimeStamp?: undefined;
|
|
1292
|
+
} & {
|
|
1293
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1294
|
+
isUninitialized: true;
|
|
1295
|
+
isLoading: false;
|
|
1296
|
+
isSuccess: false;
|
|
1297
|
+
isError: false;
|
|
1298
|
+
}) | ({
|
|
1299
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1300
|
+
} & Omit<{
|
|
1301
|
+
requestId: string;
|
|
1302
|
+
data?: void | undefined;
|
|
1303
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1304
|
+
endpointName: string;
|
|
1305
|
+
startedTimeStamp: number;
|
|
1306
|
+
fulfilledTimeStamp?: number;
|
|
1307
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1308
|
+
requestId: string;
|
|
1309
|
+
data?: void | undefined;
|
|
1310
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1311
|
+
endpointName: string;
|
|
1312
|
+
startedTimeStamp: number;
|
|
1313
|
+
fulfilledTimeStamp?: number;
|
|
1314
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1315
|
+
error: undefined;
|
|
1316
|
+
} & {
|
|
1317
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1318
|
+
isUninitialized: false;
|
|
1319
|
+
isLoading: false;
|
|
1320
|
+
isSuccess: true;
|
|
1321
|
+
isError: false;
|
|
1322
|
+
}) | ({
|
|
1323
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1324
|
+
} & {
|
|
1325
|
+
requestId: string;
|
|
1326
|
+
data?: void | undefined;
|
|
1327
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1328
|
+
endpointName: string;
|
|
1329
|
+
startedTimeStamp: number;
|
|
1330
|
+
fulfilledTimeStamp?: number;
|
|
1331
|
+
} & {
|
|
1332
|
+
data?: undefined;
|
|
1333
|
+
} & {
|
|
1334
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1335
|
+
isUninitialized: false;
|
|
1336
|
+
isLoading: true;
|
|
1337
|
+
isSuccess: false;
|
|
1338
|
+
isError: false;
|
|
1339
|
+
}) | ({
|
|
1340
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1341
|
+
} & Omit<{
|
|
1342
|
+
requestId: string;
|
|
1343
|
+
data?: void | undefined;
|
|
1344
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1345
|
+
endpointName: string;
|
|
1346
|
+
startedTimeStamp: number;
|
|
1347
|
+
fulfilledTimeStamp?: number;
|
|
1348
|
+
}, "error"> & Required<Pick<{
|
|
1349
|
+
requestId: string;
|
|
1350
|
+
data?: void | undefined;
|
|
1351
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1352
|
+
endpointName: string;
|
|
1353
|
+
startedTimeStamp: number;
|
|
1354
|
+
fulfilledTimeStamp?: number;
|
|
1355
|
+
}, "error">> & {
|
|
1356
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1357
|
+
isUninitialized: false;
|
|
1358
|
+
isLoading: false;
|
|
1359
|
+
isSuccess: false;
|
|
1360
|
+
isError: true;
|
|
1361
|
+
})) => R) | undefined;
|
|
1362
|
+
fixedCacheKey?: string;
|
|
1363
|
+
} | undefined) => readonly [(arg: number) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<number, (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" | "customersLight" | "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" | "customerPendingLoads" | "arTransactions" | "paymentsV1" | "invoicePaymentsV1" | "invoicePaymentsByPaymentIDV1" | "paymentFiles" | "tenderStatusesV1" | "carrierTendersAccounting" | "customerCreditStatus" | "railTenders" | "assetNamesFiltered" | "railTendersV1" | "railInvoicesV1" | "railInvoiceFiles", void, "salesApi", unknown>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1364
|
+
originalArgs?: number | undefined;
|
|
1365
|
+
reset: () => void;
|
|
1205
1366
|
}];
|
|
1206
1367
|
export default railTenderV1Endpoints;
|
|
1207
1368
|
export declare const getRailTendersV1Selectors: (params: Record<string, unknown> | void) => import("@reduxjs/toolkit").EntitySelectors<RailTenderV1_Entity, {
|
|
@@ -59,9 +59,17 @@ export const railTenderV1Endpoints = salesApi.injectEndpoints({
|
|
|
59
59
|
}),
|
|
60
60
|
invalidatesTags: ["railTendersV1", "railTenders"],
|
|
61
61
|
}),
|
|
62
|
+
ingateRailTenderV1: build.mutation({
|
|
63
|
+
query: (id) => ({
|
|
64
|
+
method: "POST",
|
|
65
|
+
url: `rail_tenders/${id}/ingate_rail_tender.json`,
|
|
66
|
+
routePrefix: "/v1",
|
|
67
|
+
}),
|
|
68
|
+
invalidatesTags: ["railTendersV1", "railTenders"],
|
|
69
|
+
}),
|
|
62
70
|
}),
|
|
63
71
|
});
|
|
64
|
-
export const { useGetRailTenderV1Query, useGetRailTendersV1Query, useLazyGetRailTendersV1Query, useLazyGetRailTenderV1Query, useCreateRailTenderV1Mutation, useDeleteRailTenderV1Mutation, useUpdateRailTenderV1Mutation, useRecalculateRailTenderV1Mutation, } = railTenderV1Endpoints;
|
|
72
|
+
export const { useGetRailTenderV1Query, useGetRailTendersV1Query, useLazyGetRailTendersV1Query, useLazyGetRailTenderV1Query, useCreateRailTenderV1Mutation, useDeleteRailTenderV1Mutation, useUpdateRailTenderV1Mutation, useRecalculateRailTenderV1Mutation, useIngateRailTenderV1Mutation, } = railTenderV1Endpoints;
|
|
65
73
|
export default railTenderV1Endpoints;
|
|
66
74
|
export const getRailTendersV1Selectors = (params) => {
|
|
67
75
|
return railTendersV1Adapter.getSelectors((state) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"railTenderV1Endpoints.js","sourceRoot":"","sources":["../../../src/redux/railTenderV1/railTenderV1Endpoints.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"railTenderV1Endpoints.js","sourceRoot":"","sources":["../../../src/redux/railTenderV1/railTenderV1Endpoints.ts"],"names":[],"mappings":"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"}
|