@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
|
@@ -6,124 +6,42 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export declare function validator(cargoConsolidationJson: unknown): cargoConsolidationJson is CargoConsolidation_Entity;
|
|
8
8
|
export default class CargoConsolidation_Entity {
|
|
9
|
-
static requiredFields:
|
|
10
|
-
constructor(cargoConsolidationJson
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
driver_id
|
|
14
|
-
|
|
15
|
-
employee_id
|
|
9
|
+
static requiredFields: string[];
|
|
10
|
+
constructor(cargoConsolidationJson: unknown);
|
|
11
|
+
cargo_consolidation_id: number;
|
|
12
|
+
carrier_id: number;
|
|
13
|
+
driver_id: number;
|
|
14
|
+
asset_id: number;
|
|
15
|
+
employee_id: number;
|
|
16
16
|
consolidation_date?: string;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
warehouse_notes?: string;
|
|
42
|
-
total_cost?: number;
|
|
43
|
-
loading_status?: string;
|
|
44
|
-
pallet_manifest_id?: number;
|
|
45
|
-
unload_node_id?: number;
|
|
46
|
-
person_id?: number;
|
|
47
|
-
otr_posted?: boolean;
|
|
48
|
-
start_brokerage_rate?: number;
|
|
49
|
-
max_brokerage_rate?: number;
|
|
50
|
-
calc_area_id?: number;
|
|
51
|
-
pieces?: number;
|
|
52
|
-
pallets?: number;
|
|
53
|
-
feet?: number;
|
|
54
|
-
weight?: number;
|
|
55
|
-
next_node_id?: number;
|
|
56
|
-
fill_percent?: number;
|
|
57
|
-
pallets_to_go?: number;
|
|
58
|
-
weight_to_go?: number;
|
|
17
|
+
assigned_person_id: number;
|
|
18
|
+
assigned_person: string;
|
|
19
|
+
node_id: number;
|
|
20
|
+
origin_node: string;
|
|
21
|
+
pallet_manifest_id: number;
|
|
22
|
+
otr_storage: boolean;
|
|
23
|
+
loading_status: string;
|
|
24
|
+
start_brokerage_rate: number;
|
|
25
|
+
max_brokerage_rate: number;
|
|
26
|
+
otr_posted: boolean;
|
|
27
|
+
last_brokerage_note: string;
|
|
28
|
+
review: boolean;
|
|
29
|
+
otr_move: boolean;
|
|
30
|
+
next_cargo_consolidation_id: number;
|
|
31
|
+
notes: string;
|
|
32
|
+
warehouse_notes: string;
|
|
33
|
+
seal: string;
|
|
34
|
+
contact_info: string;
|
|
35
|
+
needs_check_call: boolean;
|
|
36
|
+
last_check_call_time?: string;
|
|
37
|
+
last_check_call_or_update_time?: string;
|
|
38
|
+
workflow_assignment_id: number;
|
|
39
|
+
has_rail_tender: boolean;
|
|
40
|
+
has_ingated: boolean;
|
|
59
41
|
outbound_dispatch_type?: string;
|
|
60
|
-
dispatch_path_edge_id?: number;
|
|
61
|
-
next_node_type?: string;
|
|
62
|
-
asset_code?: string;
|
|
63
|
-
next_node_name?: string;
|
|
64
|
-
dest_area_id?: number;
|
|
65
|
-
current_eta?: string;
|
|
66
|
-
dest_node_id?: number;
|
|
67
|
-
next_dispatch_type?: string;
|
|
68
|
-
node_type?: string;
|
|
69
|
-
trip_total_cost?: string;
|
|
70
|
-
scac?: string;
|
|
71
|
-
waybill?: string;
|
|
72
|
-
cached_eta?: string;
|
|
73
|
-
reefer_last_contact?: string;
|
|
74
|
-
reefer_temp?: number;
|
|
75
|
-
reefer_fuel_level?: number;
|
|
76
|
-
pickup_number?: string;
|
|
77
|
-
destination_states?: string;
|
|
78
|
-
destination_areas?: string;
|
|
79
|
-
dest_node_type?: string;
|
|
80
|
-
next_leg_dispatch_type?: string;
|
|
81
|
-
next_waybill?: string;
|
|
82
|
-
has_rail_tender?: boolean;
|
|
83
|
-
has_next_rail_tender?: boolean;
|
|
84
|
-
next_dest_node_id?: number;
|
|
85
|
-
load_numbers?: string;
|
|
86
|
-
has_splits?: boolean;
|
|
87
|
-
has_ingated?: boolean;
|
|
88
|
-
next_has_ingated?: boolean;
|
|
89
|
-
trailer_expire?: string;
|
|
90
|
-
current_carrier_tender_id?: number;
|
|
91
|
-
next_scac?: string;
|
|
92
|
-
long_distance?: boolean;
|
|
93
|
-
origin_areas?: string;
|
|
94
|
-
earliest_delivery_date?: string;
|
|
95
|
-
total_planned_cost?: number;
|
|
96
|
-
edges_until_end?: number;
|
|
97
|
-
node_name?: string;
|
|
98
|
-
pallet_position_to_go?: number;
|
|
99
|
-
do_not_break_seal?: boolean;
|
|
100
|
-
asset_status?: string;
|
|
101
|
-
status_description?: string;
|
|
102
|
-
expedited?: boolean;
|
|
103
|
-
local_move?: boolean;
|
|
104
|
-
load_count?: number;
|
|
105
|
-
active_rail_tender_id?: number;
|
|
106
|
-
status_code?: string;
|
|
107
|
-
service_level?: string;
|
|
108
|
-
destination_locations?: string[];
|
|
109
|
-
carrier_pay_source_type?: string;
|
|
110
|
-
consolidation_flag_id?: number;
|
|
111
|
-
assigned_names?: string;
|
|
112
|
-
next_node_sub_area_id?: number;
|
|
113
|
-
max_weight?: boolean;
|
|
114
|
-
next_node_timezone?: string;
|
|
115
|
-
next_node_timezone_offset?: string;
|
|
116
|
-
westbound?: boolean;
|
|
117
|
-
customer_rank_based_on_sales?: string;
|
|
118
|
-
customer_ids?: number[];
|
|
119
|
-
destination_sub_areas?: string;
|
|
120
|
-
cutoff_time?: string;
|
|
121
|
-
tanker_required?: boolean;
|
|
122
|
-
next_driver_id?: number;
|
|
123
|
-
next_carrier_id?: number;
|
|
124
|
-
next_perform_date?: string;
|
|
125
|
-
intermodal_contract?: string;
|
|
126
|
-
storage_consolidation?: boolean;
|
|
127
42
|
commodity_piece_ids?: number[];
|
|
128
|
-
|
|
43
|
+
load_numbers?: number[];
|
|
44
|
+
weight: number;
|
|
45
|
+
feet: number;
|
|
46
|
+
calc_area_id?: number;
|
|
129
47
|
}
|
|
@@ -15,258 +15,116 @@ export function validator(cargoConsolidationJson) {
|
|
|
15
15
|
return true;
|
|
16
16
|
}
|
|
17
17
|
export default class CargoConsolidation_Entity {
|
|
18
|
-
static requiredFields = [
|
|
18
|
+
static requiredFields = [
|
|
19
|
+
"cargo_consolidation_id",
|
|
20
|
+
"carrier_id",
|
|
21
|
+
"driver_id",
|
|
22
|
+
"asset_id",
|
|
23
|
+
"employee_id",
|
|
24
|
+
"assigned_person_id",
|
|
25
|
+
"assigned_person",
|
|
26
|
+
"node_id",
|
|
27
|
+
"origin_node",
|
|
28
|
+
"pallet_manifest_id",
|
|
29
|
+
"otr_storage",
|
|
30
|
+
"loading_status",
|
|
31
|
+
"start_brokerage_rate",
|
|
32
|
+
"max_brokerage_rate",
|
|
33
|
+
"otr_posted",
|
|
34
|
+
"last_brokerage_note",
|
|
35
|
+
"review",
|
|
36
|
+
"otr_move",
|
|
37
|
+
"next_cargo_consolidation_id",
|
|
38
|
+
"notes",
|
|
39
|
+
"warehouse_notes",
|
|
40
|
+
"seal",
|
|
41
|
+
"contact_info",
|
|
42
|
+
"needs_check_call",
|
|
43
|
+
"workflow_assignment_id",
|
|
44
|
+
];
|
|
19
45
|
constructor(cargoConsolidationJson) {
|
|
20
46
|
if (validator(cargoConsolidationJson)) {
|
|
21
|
-
this.
|
|
22
|
-
|
|
47
|
+
this.cargo_consolidation_id =
|
|
48
|
+
cargoConsolidationJson.cargo_consolidation_id;
|
|
49
|
+
this.carrier_id = cargoConsolidationJson.carrier_id;
|
|
23
50
|
this.driver_id = cargoConsolidationJson.driver_id;
|
|
24
|
-
this.
|
|
51
|
+
this.asset_id = cargoConsolidationJson.asset_id;
|
|
25
52
|
this.employee_id = cargoConsolidationJson.employee_id;
|
|
26
53
|
this.consolidation_date = cargoConsolidationJson.consolidation_date;
|
|
27
|
-
this.
|
|
28
|
-
this.
|
|
29
|
-
this.
|
|
30
|
-
this.
|
|
31
|
-
this.
|
|
32
|
-
this.
|
|
33
|
-
this.
|
|
34
|
-
this.
|
|
54
|
+
this.assigned_person_id = cargoConsolidationJson.assigned_person_id;
|
|
55
|
+
this.assigned_person = cargoConsolidationJson.assigned_person;
|
|
56
|
+
this.node_id = cargoConsolidationJson.node_id;
|
|
57
|
+
this.origin_node = cargoConsolidationJson.origin_node;
|
|
58
|
+
this.pallet_manifest_id = cargoConsolidationJson.pallet_manifest_id;
|
|
59
|
+
this.otr_storage = cargoConsolidationJson.otr_storage;
|
|
60
|
+
this.loading_status = cargoConsolidationJson.loading_status;
|
|
61
|
+
this.start_brokerage_rate = cargoConsolidationJson.start_brokerage_rate;
|
|
62
|
+
this.max_brokerage_rate = cargoConsolidationJson.max_brokerage_rate;
|
|
63
|
+
this.otr_posted = cargoConsolidationJson.otr_posted;
|
|
64
|
+
this.last_brokerage_note = cargoConsolidationJson.last_brokerage_note;
|
|
65
|
+
this.review = cargoConsolidationJson.review;
|
|
66
|
+
this.otr_move = cargoConsolidationJson.otr_move;
|
|
35
67
|
this.next_cargo_consolidation_id =
|
|
36
68
|
cargoConsolidationJson.next_cargo_consolidation_id;
|
|
37
|
-
this.trip_detail = cargoConsolidationJson.trip_detail;
|
|
38
|
-
this.for_delivery = cargoConsolidationJson.for_delivery;
|
|
39
|
-
this.override_dispatch_path_edge_id =
|
|
40
|
-
cargoConsolidationJson.override_dispatch_path_edge_id;
|
|
41
69
|
this.notes = cargoConsolidationJson.notes;
|
|
42
|
-
this.review = cargoConsolidationJson.review;
|
|
43
|
-
this.dropped_to_dock = cargoConsolidationJson.dropped_to_dock;
|
|
44
|
-
this.workflow_driver_assignment_id =
|
|
45
|
-
cargoConsolidationJson.workflow_driver_assignment_id;
|
|
46
|
-
this.start_area_id = cargoConsolidationJson.start_area_id;
|
|
47
|
-
this.assignment_order = cargoConsolidationJson.assignment_order;
|
|
48
|
-
this.perform_date = cargoConsolidationJson.perform_date;
|
|
49
|
-
this.empty_workflow_move = cargoConsolidationJson.empty_workflow_move;
|
|
50
|
-
this.return_temporary = cargoConsolidationJson.return_temporary;
|
|
51
|
-
this.start_time = cargoConsolidationJson.start_time;
|
|
52
|
-
this.end_time = cargoConsolidationJson.end_time;
|
|
53
|
-
this.loaded_workflow_move = cargoConsolidationJson.loaded_workflow_move;
|
|
54
70
|
this.warehouse_notes = cargoConsolidationJson.warehouse_notes;
|
|
55
|
-
this.
|
|
56
|
-
this.
|
|
57
|
-
this.
|
|
58
|
-
this.
|
|
59
|
-
this.
|
|
60
|
-
|
|
61
|
-
this.
|
|
62
|
-
|
|
63
|
-
this.calc_area_id = cargoConsolidationJson.calc_area_id;
|
|
64
|
-
this.pieces = cargoConsolidationJson.pieces;
|
|
65
|
-
this.pallets = cargoConsolidationJson.pallets;
|
|
66
|
-
this.feet = cargoConsolidationJson.feet;
|
|
67
|
-
this.weight = cargoConsolidationJson.weight;
|
|
68
|
-
this.next_node_id = cargoConsolidationJson.next_node_id;
|
|
69
|
-
this.fill_percent = cargoConsolidationJson.fill_percent;
|
|
70
|
-
this.pallets_to_go = cargoConsolidationJson.pallets_to_go;
|
|
71
|
-
this.weight_to_go = cargoConsolidationJson.weight_to_go;
|
|
72
|
-
this.outbound_dispatch_type =
|
|
73
|
-
cargoConsolidationJson.outbound_dispatch_type;
|
|
74
|
-
this.dispatch_path_edge_id = cargoConsolidationJson.dispatch_path_edge_id;
|
|
75
|
-
this.next_node_type = cargoConsolidationJson.next_node_type;
|
|
76
|
-
this.asset_code = cargoConsolidationJson.asset_code;
|
|
77
|
-
this.next_node_name = cargoConsolidationJson.next_node_name;
|
|
78
|
-
this.dest_area_id = cargoConsolidationJson.dest_area_id;
|
|
79
|
-
this.current_eta = cargoConsolidationJson.current_eta;
|
|
80
|
-
this.dest_node_id = cargoConsolidationJson.dest_node_id;
|
|
81
|
-
this.next_dispatch_type = cargoConsolidationJson.next_dispatch_type;
|
|
82
|
-
this.node_type = cargoConsolidationJson.node_type;
|
|
83
|
-
this.trip_total_cost = cargoConsolidationJson.trip_total_cost;
|
|
84
|
-
this.scac = cargoConsolidationJson.scac;
|
|
85
|
-
this.waybill = cargoConsolidationJson.waybill;
|
|
86
|
-
this.cached_eta = cargoConsolidationJson.cached_eta;
|
|
87
|
-
this.reefer_last_contact = cargoConsolidationJson.reefer_last_contact;
|
|
88
|
-
this.reefer_temp = cargoConsolidationJson.reefer_temp;
|
|
89
|
-
this.reefer_fuel_level = cargoConsolidationJson.reefer_fuel_level;
|
|
90
|
-
this.pickup_number = cargoConsolidationJson.pickup_number;
|
|
91
|
-
this.destination_states = cargoConsolidationJson.destination_states;
|
|
92
|
-
this.destination_areas = cargoConsolidationJson.destination_areas;
|
|
93
|
-
this.dest_node_type = cargoConsolidationJson.dest_node_type;
|
|
94
|
-
this.next_leg_dispatch_type =
|
|
95
|
-
cargoConsolidationJson.next_leg_dispatch_type;
|
|
96
|
-
this.next_waybill = cargoConsolidationJson.next_waybill;
|
|
71
|
+
this.seal = cargoConsolidationJson.seal;
|
|
72
|
+
this.contact_info = cargoConsolidationJson.contact_info;
|
|
73
|
+
this.needs_check_call = cargoConsolidationJson.needs_check_call;
|
|
74
|
+
this.last_check_call_time = cargoConsolidationJson.last_check_call_time;
|
|
75
|
+
this.last_check_call_or_update_time =
|
|
76
|
+
cargoConsolidationJson.last_check_call_or_update_time;
|
|
77
|
+
this.workflow_assignment_id =
|
|
78
|
+
cargoConsolidationJson.workflow_assignment_id;
|
|
97
79
|
this.has_rail_tender = cargoConsolidationJson.has_rail_tender;
|
|
98
|
-
this.has_next_rail_tender = cargoConsolidationJson.has_next_rail_tender;
|
|
99
|
-
this.next_dest_node_id = cargoConsolidationJson.next_dest_node_id;
|
|
100
|
-
this.load_numbers = cargoConsolidationJson.load_numbers;
|
|
101
|
-
this.has_splits = cargoConsolidationJson.has_splits;
|
|
102
80
|
this.has_ingated = cargoConsolidationJson.has_ingated;
|
|
103
|
-
this.
|
|
104
|
-
|
|
105
|
-
this.current_carrier_tender_id =
|
|
106
|
-
cargoConsolidationJson.current_carrier_tender_id;
|
|
107
|
-
this.next_scac = cargoConsolidationJson.next_scac;
|
|
108
|
-
this.long_distance = cargoConsolidationJson.long_distance;
|
|
109
|
-
this.origin_areas = cargoConsolidationJson.origin_areas;
|
|
110
|
-
this.earliest_delivery_date =
|
|
111
|
-
cargoConsolidationJson.earliest_delivery_date;
|
|
112
|
-
this.total_planned_cost = cargoConsolidationJson.total_planned_cost;
|
|
113
|
-
this.edges_until_end = cargoConsolidationJson.edges_until_end;
|
|
114
|
-
this.node_name = cargoConsolidationJson.node_name;
|
|
115
|
-
this.pallet_position_to_go = cargoConsolidationJson.pallet_position_to_go;
|
|
116
|
-
this.do_not_break_seal = cargoConsolidationJson.do_not_break_seal;
|
|
117
|
-
this.asset_status = cargoConsolidationJson.asset_status;
|
|
118
|
-
this.status_description = cargoConsolidationJson.status_description;
|
|
119
|
-
this.expedited = cargoConsolidationJson.expedited;
|
|
120
|
-
this.local_move = cargoConsolidationJson.local_move;
|
|
121
|
-
this.load_count = cargoConsolidationJson.load_count;
|
|
122
|
-
this.active_rail_tender_id = cargoConsolidationJson.active_rail_tender_id;
|
|
123
|
-
this.status_code = cargoConsolidationJson.status_code;
|
|
124
|
-
this.service_level = cargoConsolidationJson.service_level;
|
|
125
|
-
this.destination_locations = cargoConsolidationJson.destination_locations;
|
|
126
|
-
this.carrier_pay_source_type =
|
|
127
|
-
cargoConsolidationJson.carrier_pay_source_type;
|
|
128
|
-
this.consolidation_flag_id = cargoConsolidationJson.consolidation_flag_id;
|
|
129
|
-
this.assigned_names = cargoConsolidationJson.assigned_names;
|
|
130
|
-
this.next_node_sub_area_id = cargoConsolidationJson.next_node_sub_area_id;
|
|
131
|
-
this.max_weight = cargoConsolidationJson.max_weight;
|
|
132
|
-
this.next_node_timezone = cargoConsolidationJson.next_node_timezone;
|
|
133
|
-
this.next_node_timezone_offset =
|
|
134
|
-
cargoConsolidationJson.next_node_timezone_offset;
|
|
135
|
-
this.westbound = cargoConsolidationJson.westbound;
|
|
136
|
-
this.customer_rank_based_on_sales =
|
|
137
|
-
cargoConsolidationJson.customer_rank_based_on_sales;
|
|
138
|
-
this.customer_ids = cargoConsolidationJson.customer_ids;
|
|
139
|
-
this.destination_sub_areas = cargoConsolidationJson.destination_sub_areas;
|
|
140
|
-
this.cutoff_time = cargoConsolidationJson.cutoff_time;
|
|
141
|
-
this.tanker_required = cargoConsolidationJson.tanker_required;
|
|
142
|
-
this.next_driver_id = cargoConsolidationJson.next_driver_id;
|
|
143
|
-
this.next_carrier_id = cargoConsolidationJson.next_carrier_id;
|
|
144
|
-
this.next_perform_date = cargoConsolidationJson.next_perform_date;
|
|
145
|
-
this.intermodal_contract = cargoConsolidationJson.intermodal_contract;
|
|
146
|
-
this.storage_consolidation = cargoConsolidationJson.storage_consolidation;
|
|
81
|
+
this.outbound_dispatch_type =
|
|
82
|
+
cargoConsolidationJson.outbound_dispatch_type;
|
|
147
83
|
this.commodity_piece_ids = cargoConsolidationJson.commodity_piece_ids;
|
|
148
|
-
this.
|
|
84
|
+
this.load_numbers = cargoConsolidationJson.load_numbers;
|
|
85
|
+
this.weight = cargoConsolidationJson.weight;
|
|
86
|
+
this.feet = cargoConsolidationJson.feet;
|
|
87
|
+
this.calc_area_id = cargoConsolidationJson.calc_area_id;
|
|
149
88
|
}
|
|
150
|
-
else
|
|
89
|
+
else {
|
|
151
90
|
throw new Error(`Failed to create new instance of ${CargoConsolidation_Entity.name}`);
|
|
91
|
+
}
|
|
152
92
|
}
|
|
153
|
-
|
|
154
|
-
|
|
93
|
+
cargo_consolidation_id;
|
|
94
|
+
carrier_id;
|
|
155
95
|
driver_id;
|
|
156
|
-
|
|
96
|
+
asset_id;
|
|
157
97
|
employee_id;
|
|
158
98
|
consolidation_date;
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
carrier_id;
|
|
164
|
-
trip_baserate;
|
|
165
|
-
trip_fuel_surcharge;
|
|
166
|
-
processed_date;
|
|
167
|
-
next_cargo_consolidation_id;
|
|
168
|
-
trip_detail;
|
|
169
|
-
for_delivery;
|
|
170
|
-
override_dispatch_path_edge_id;
|
|
171
|
-
notes;
|
|
172
|
-
review;
|
|
173
|
-
dropped_to_dock;
|
|
174
|
-
workflow_driver_assignment_id;
|
|
175
|
-
start_area_id;
|
|
176
|
-
assignment_order;
|
|
177
|
-
perform_date;
|
|
178
|
-
empty_workflow_move;
|
|
179
|
-
return_temporary;
|
|
180
|
-
start_time;
|
|
181
|
-
end_time;
|
|
182
|
-
loaded_workflow_move;
|
|
183
|
-
warehouse_notes;
|
|
184
|
-
total_cost;
|
|
185
|
-
loading_status;
|
|
99
|
+
assigned_person_id;
|
|
100
|
+
assigned_person;
|
|
101
|
+
node_id;
|
|
102
|
+
origin_node;
|
|
186
103
|
pallet_manifest_id;
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
otr_posted;
|
|
104
|
+
otr_storage;
|
|
105
|
+
loading_status;
|
|
190
106
|
start_brokerage_rate;
|
|
191
107
|
max_brokerage_rate;
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
next_node_name;
|
|
206
|
-
dest_area_id;
|
|
207
|
-
current_eta;
|
|
208
|
-
dest_node_id;
|
|
209
|
-
next_dispatch_type;
|
|
210
|
-
node_type;
|
|
211
|
-
trip_total_cost;
|
|
212
|
-
scac;
|
|
213
|
-
waybill;
|
|
214
|
-
cached_eta;
|
|
215
|
-
reefer_last_contact;
|
|
216
|
-
reefer_temp;
|
|
217
|
-
reefer_fuel_level;
|
|
218
|
-
pickup_number;
|
|
219
|
-
destination_states;
|
|
220
|
-
destination_areas;
|
|
221
|
-
dest_node_type;
|
|
222
|
-
next_leg_dispatch_type;
|
|
223
|
-
next_waybill;
|
|
108
|
+
otr_posted;
|
|
109
|
+
last_brokerage_note;
|
|
110
|
+
review;
|
|
111
|
+
otr_move;
|
|
112
|
+
next_cargo_consolidation_id;
|
|
113
|
+
notes;
|
|
114
|
+
warehouse_notes;
|
|
115
|
+
seal;
|
|
116
|
+
contact_info;
|
|
117
|
+
needs_check_call;
|
|
118
|
+
last_check_call_time;
|
|
119
|
+
last_check_call_or_update_time;
|
|
120
|
+
workflow_assignment_id;
|
|
224
121
|
has_rail_tender;
|
|
225
|
-
has_next_rail_tender;
|
|
226
|
-
next_dest_node_id;
|
|
227
|
-
load_numbers;
|
|
228
|
-
has_splits;
|
|
229
122
|
has_ingated;
|
|
230
|
-
|
|
231
|
-
trailer_expire;
|
|
232
|
-
current_carrier_tender_id;
|
|
233
|
-
next_scac;
|
|
234
|
-
long_distance;
|
|
235
|
-
origin_areas;
|
|
236
|
-
earliest_delivery_date;
|
|
237
|
-
total_planned_cost;
|
|
238
|
-
edges_until_end;
|
|
239
|
-
node_name;
|
|
240
|
-
pallet_position_to_go;
|
|
241
|
-
do_not_break_seal;
|
|
242
|
-
asset_status;
|
|
243
|
-
status_description;
|
|
244
|
-
expedited;
|
|
245
|
-
local_move;
|
|
246
|
-
load_count;
|
|
247
|
-
active_rail_tender_id;
|
|
248
|
-
status_code;
|
|
249
|
-
service_level;
|
|
250
|
-
destination_locations;
|
|
251
|
-
carrier_pay_source_type;
|
|
252
|
-
consolidation_flag_id;
|
|
253
|
-
assigned_names;
|
|
254
|
-
next_node_sub_area_id;
|
|
255
|
-
max_weight;
|
|
256
|
-
next_node_timezone;
|
|
257
|
-
next_node_timezone_offset;
|
|
258
|
-
westbound;
|
|
259
|
-
customer_rank_based_on_sales;
|
|
260
|
-
customer_ids;
|
|
261
|
-
destination_sub_areas;
|
|
262
|
-
cutoff_time;
|
|
263
|
-
tanker_required;
|
|
264
|
-
next_driver_id;
|
|
265
|
-
next_carrier_id;
|
|
266
|
-
next_perform_date;
|
|
267
|
-
intermodal_contract;
|
|
268
|
-
storage_consolidation;
|
|
123
|
+
outbound_dispatch_type;
|
|
269
124
|
commodity_piece_ids;
|
|
270
|
-
|
|
125
|
+
load_numbers;
|
|
126
|
+
weight;
|
|
127
|
+
feet;
|
|
128
|
+
calc_area_id;
|
|
271
129
|
}
|
|
272
130
|
//# sourceMappingURL=cargoConsolidation.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cargoConsolidation.js","sourceRoot":"","sources":["../../../src/entities/cargoConsolidation/cargoConsolidation.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,UAAU,SAAS,CACvB,sBAA+B;IAE/B,IACE,OAAO,sBAAsB,KAAK,QAAQ;QAC1C,sBAAsB,IAAI,IAAI,EAC9B;QACA,yBAAyB,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;YAC3D,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC;gBACxD,MAAM,IAAI,KAAK,CAAC,SAAS,OAAO,uBAAuB,CAAC,CAAC;QAC7D,CAAC,CAAC,CAAC;KACJ;IACD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,MAAM,CAAC,OAAO,OAAO,yBAAyB;IAC5C,MAAM,CAAC,cAAc,GAAG,
|
|
1
|
+
{"version":3,"file":"cargoConsolidation.js","sourceRoot":"","sources":["../../../src/entities/cargoConsolidation/cargoConsolidation.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CargoConsolidationV1_Entity type guard.
|
|
3
|
+
*
|
|
4
|
+
* @param {any} cargoConsolidationV1Json CargoConsolidationV1 object from API
|
|
5
|
+
* @returns {boolean} Return true if type is CargoConsolidationV1_Entity
|
|
6
|
+
*/
|
|
7
|
+
export declare function validator(cargoConsolidationV1Json: unknown): cargoConsolidationV1Json is CargoConsolidationV1_Entity;
|
|
8
|
+
export default class CargoConsolidationV1_Entity {
|
|
9
|
+
static requiredFields: never[];
|
|
10
|
+
constructor(cargoConsolidationV1Json?: unknown);
|
|
11
|
+
id: number;
|
|
12
|
+
asset_id?: number;
|
|
13
|
+
driver_id?: number;
|
|
14
|
+
node_id?: number;
|
|
15
|
+
employee_id?: number;
|
|
16
|
+
consolidation_date?: string;
|
|
17
|
+
seal?: string;
|
|
18
|
+
temperature?: string;
|
|
19
|
+
appointment_trip_id?: number;
|
|
20
|
+
loaded?: boolean;
|
|
21
|
+
carrier_id?: number;
|
|
22
|
+
trip_baserate?: string;
|
|
23
|
+
trip_fuel_surcharge?: string;
|
|
24
|
+
processed_date?: string;
|
|
25
|
+
next_cargo_consolidation_id?: number;
|
|
26
|
+
trip_detail?: string;
|
|
27
|
+
for_delivery?: boolean;
|
|
28
|
+
override_dispatch_path_edge_id?: number;
|
|
29
|
+
notes?: string;
|
|
30
|
+
review?: boolean;
|
|
31
|
+
dropped_to_dock?: boolean;
|
|
32
|
+
workflow_driver_assignment_id?: number;
|
|
33
|
+
start_area_id?: number;
|
|
34
|
+
assignment_order?: number;
|
|
35
|
+
perform_date?: string;
|
|
36
|
+
empty_workflow_move?: boolean;
|
|
37
|
+
return_temporary?: boolean;
|
|
38
|
+
start_time?: string;
|
|
39
|
+
end_time?: string;
|
|
40
|
+
loaded_workflow_move?: boolean;
|
|
41
|
+
warehouse_notes?: string;
|
|
42
|
+
total_cost?: number;
|
|
43
|
+
loading_status?: string;
|
|
44
|
+
pallet_manifest_id?: number;
|
|
45
|
+
unload_node_id?: number;
|
|
46
|
+
person_id?: number;
|
|
47
|
+
otr_posted?: boolean;
|
|
48
|
+
start_brokerage_rate?: number;
|
|
49
|
+
max_brokerage_rate?: number;
|
|
50
|
+
calc_area_id?: number;
|
|
51
|
+
pieces?: number;
|
|
52
|
+
pallets?: number;
|
|
53
|
+
feet?: number;
|
|
54
|
+
weight?: number;
|
|
55
|
+
next_node_id?: number;
|
|
56
|
+
fill_percent?: number;
|
|
57
|
+
pallets_to_go?: number;
|
|
58
|
+
weight_to_go?: number;
|
|
59
|
+
outbound_dispatch_type?: string;
|
|
60
|
+
dispatch_path_edge_id?: number;
|
|
61
|
+
next_node_type?: string;
|
|
62
|
+
asset_code?: string;
|
|
63
|
+
next_node_name?: string;
|
|
64
|
+
dest_area_id?: number;
|
|
65
|
+
current_eta?: string;
|
|
66
|
+
dest_node_id?: number;
|
|
67
|
+
next_dispatch_type?: string;
|
|
68
|
+
node_type?: string;
|
|
69
|
+
trip_total_cost?: string;
|
|
70
|
+
scac?: string;
|
|
71
|
+
waybill?: string;
|
|
72
|
+
cached_eta?: string;
|
|
73
|
+
reefer_last_contact?: string;
|
|
74
|
+
reefer_temp?: number;
|
|
75
|
+
reefer_fuel_level?: number;
|
|
76
|
+
pickup_number?: string;
|
|
77
|
+
destination_states?: string;
|
|
78
|
+
destination_areas?: string;
|
|
79
|
+
dest_node_type?: string;
|
|
80
|
+
next_leg_dispatch_type?: string;
|
|
81
|
+
next_waybill?: string;
|
|
82
|
+
has_rail_tender?: boolean;
|
|
83
|
+
has_next_rail_tender?: boolean;
|
|
84
|
+
next_dest_node_id?: number;
|
|
85
|
+
load_numbers?: string;
|
|
86
|
+
has_splits?: boolean;
|
|
87
|
+
has_ingated?: boolean;
|
|
88
|
+
next_has_ingated?: boolean;
|
|
89
|
+
trailer_expire?: string;
|
|
90
|
+
current_carrier_tender_id?: number;
|
|
91
|
+
next_scac?: string;
|
|
92
|
+
long_distance?: boolean;
|
|
93
|
+
origin_areas?: string;
|
|
94
|
+
earliest_delivery_date?: string;
|
|
95
|
+
total_planned_cost?: number;
|
|
96
|
+
edges_until_end?: number;
|
|
97
|
+
node_name?: string;
|
|
98
|
+
pallet_position_to_go?: number;
|
|
99
|
+
do_not_break_seal?: boolean;
|
|
100
|
+
asset_status?: string;
|
|
101
|
+
status_description?: string;
|
|
102
|
+
expedited?: boolean;
|
|
103
|
+
local_move?: boolean;
|
|
104
|
+
load_count?: number;
|
|
105
|
+
active_rail_tender_id?: number;
|
|
106
|
+
status_code?: string;
|
|
107
|
+
service_level?: string;
|
|
108
|
+
destination_locations?: string[];
|
|
109
|
+
carrier_pay_source_type?: string;
|
|
110
|
+
consolidation_flag_id?: number;
|
|
111
|
+
assigned_names?: string;
|
|
112
|
+
next_node_sub_area_id?: number;
|
|
113
|
+
max_weight?: boolean;
|
|
114
|
+
next_node_timezone?: string;
|
|
115
|
+
next_node_timezone_offset?: string;
|
|
116
|
+
westbound?: boolean;
|
|
117
|
+
customer_rank_based_on_sales?: string;
|
|
118
|
+
customer_ids?: number[];
|
|
119
|
+
destination_sub_areas?: string;
|
|
120
|
+
cutoff_time?: string;
|
|
121
|
+
tanker_required?: boolean;
|
|
122
|
+
next_driver_id?: number;
|
|
123
|
+
next_carrier_id?: number;
|
|
124
|
+
next_perform_date?: string;
|
|
125
|
+
intermodal_contract?: string;
|
|
126
|
+
storage_consolidation?: boolean;
|
|
127
|
+
commodity_piece_ids?: number[];
|
|
128
|
+
load_ids?: number[];
|
|
129
|
+
}
|