@nerdjs/sales-kit 4.0.44 → 4.0.46
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/hooks/lep/constants.js +1 -1
- package/dist/hooks/quote/result.js +11 -11
- package/dist/hooks/quote/result.js.map +1 -1
- package/dist/redux/accessorialV1/accessorialV1Endpoints.d.ts +256 -48
- package/dist/redux/accountingPayment/accountingPaymentEndpoints.d.ts +384 -72
- package/dist/redux/apiTender/apiTenderEndpoints.d.ts +384 -72
- package/dist/redux/appointmentArrival/appointmentArrivalEndpoints.d.ts +256 -48
- package/dist/redux/appointmentIssue/appointmentIssueEndpoints.d.ts +256 -48
- package/dist/redux/appointmentIssueCategory/appointmentIssueCategoryEndpoints.d.ts +512 -96
- package/dist/redux/appointmentIssueSubcategory/appointmentIssueSubcategoryEndpoints.d.ts +384 -72
- package/dist/redux/carrier/carrierEndpoints.d.ts +1031 -199
- package/dist/redux/carrier/carrierSlice.d.ts +36 -6
- package/dist/redux/carrierInvoiceV1/carrierInvoiceSlice.d.ts +78 -6
- package/dist/redux/carrierInvoiceV1/carrierInvoiceV1Endpoints.d.ts +256 -48
- package/dist/redux/carrierTender/carrierTenderEndpoints.d.ts +384 -72
- package/dist/redux/carrierTender/carrierTenderSlice.d.ts +768 -6
- package/dist/redux/commoditiesTasksSlice/commoditiesTasksSlice.d.ts +57 -3
- package/dist/redux/lep/lepSlice.d.ts +660 -6
- package/dist/redux/load/loadDrawerSlice.d.ts +5 -1
- package/dist/redux/loadInfoTasksSlice/loadInfoTasksSlice.d.ts +336 -3
- package/dist/redux/quote/quoteCustomerPortalEndpoints.d.ts +768 -144
- package/dist/redux/quote/quoteSalesEndpoints.d.ts +384 -72
- package/dist/redux/shipconsTasksSlice/shipconsTasksSlice.d.ts +57 -3
- package/dist/redux/tender/tenderSlice.d.ts +1113 -9
- package/package.json +1 -1
|
@@ -4,13 +4,67 @@ export interface ShipconsTasksState {
|
|
|
4
4
|
shipconsTasks: Record<number, Record<number, Task>>;
|
|
5
5
|
}
|
|
6
6
|
export declare const shipconsTasksSlice: import("@reduxjs/toolkit").Slice<ShipconsTasksState, {
|
|
7
|
-
addShipconsTask(state:
|
|
7
|
+
addShipconsTask(state: {
|
|
8
|
+
shipconsTasks: {
|
|
9
|
+
[x: number]: {
|
|
10
|
+
[x: number]: {
|
|
11
|
+
order: number;
|
|
12
|
+
uuid: string;
|
|
13
|
+
label: string;
|
|
14
|
+
status: "success" | "warning" | "danger";
|
|
15
|
+
tabIndex?: number | undefined;
|
|
16
|
+
step?: {
|
|
17
|
+
content: string;
|
|
18
|
+
selector: string;
|
|
19
|
+
highlightedSelectors?: string[] | undefined;
|
|
20
|
+
mutationObservables?: string[] | undefined;
|
|
21
|
+
} | undefined;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
}, action: PayloadAction<{
|
|
8
26
|
task: Task;
|
|
9
27
|
shipconID: number;
|
|
10
28
|
loadID: number;
|
|
11
29
|
}>): void;
|
|
12
|
-
removeShipconsTask(state:
|
|
13
|
-
|
|
30
|
+
removeShipconsTask(state: {
|
|
31
|
+
shipconsTasks: {
|
|
32
|
+
[x: number]: {
|
|
33
|
+
[x: number]: {
|
|
34
|
+
order: number;
|
|
35
|
+
uuid: string;
|
|
36
|
+
label: string;
|
|
37
|
+
status: "success" | "warning" | "danger";
|
|
38
|
+
tabIndex?: number | undefined;
|
|
39
|
+
step?: {
|
|
40
|
+
content: string;
|
|
41
|
+
selector: string;
|
|
42
|
+
highlightedSelectors?: string[] | undefined;
|
|
43
|
+
mutationObservables?: string[] | undefined;
|
|
44
|
+
} | undefined;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
}, action: PayloadAction<number>): void;
|
|
49
|
+
setShipconsTasks(state: {
|
|
50
|
+
shipconsTasks: {
|
|
51
|
+
[x: number]: {
|
|
52
|
+
[x: number]: {
|
|
53
|
+
order: number;
|
|
54
|
+
uuid: string;
|
|
55
|
+
label: string;
|
|
56
|
+
status: "success" | "warning" | "danger";
|
|
57
|
+
tabIndex?: number | undefined;
|
|
58
|
+
step?: {
|
|
59
|
+
content: string;
|
|
60
|
+
selector: string;
|
|
61
|
+
highlightedSelectors?: string[] | undefined;
|
|
62
|
+
mutationObservables?: string[] | undefined;
|
|
63
|
+
} | undefined;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
}, action: PayloadAction<{
|
|
14
68
|
loadID: number;
|
|
15
69
|
tasks: Record<number, Task>;
|
|
16
70
|
}>): void;
|