@be-logixpair/api 0.0.118 → 0.0.120
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/index.d.ts +84 -84
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -718348,6 +718348,90 @@ declare const cargoflowRouter: BuiltRouter<{
|
|
|
718348
718348
|
} | undefined;
|
|
718349
718349
|
meta: object;
|
|
718350
718350
|
}>;
|
|
718351
|
+
updateShipmentsConsolConnect: MutationProcedure<{
|
|
718352
|
+
input: {
|
|
718353
|
+
mode: "set" | "connect" | "disconnect";
|
|
718354
|
+
id_forwarding_consol?: string | number | bigint | null | undefined;
|
|
718355
|
+
ids_forwarding_shipment?: (string | number | bigint)[] | null | undefined;
|
|
718356
|
+
};
|
|
718357
|
+
output: {
|
|
718358
|
+
data: {
|
|
718359
|
+
_count: {
|
|
718360
|
+
forwarding_shipments: number;
|
|
718361
|
+
};
|
|
718362
|
+
is_active: boolean | null;
|
|
718363
|
+
id: string;
|
|
718364
|
+
logic_code: string | null;
|
|
718365
|
+
name: string | null;
|
|
718366
|
+
code: string | null;
|
|
718367
|
+
other_reference: string | null;
|
|
718368
|
+
created_at: Date | null;
|
|
718369
|
+
created_by: string | null;
|
|
718370
|
+
updated_at: Date | null;
|
|
718371
|
+
updated_by: string | null;
|
|
718372
|
+
id_transport_mode: string | null;
|
|
718373
|
+
id_container_shipping_type: string | null;
|
|
718374
|
+
id_service_level: string | null;
|
|
718375
|
+
id_type: string | null;
|
|
718376
|
+
id_load_port: string | null;
|
|
718377
|
+
id_discharge_port: string | null;
|
|
718378
|
+
id_vessel: string | null;
|
|
718379
|
+
id_payment_type: string | null;
|
|
718380
|
+
id_sending_agent: string | null;
|
|
718381
|
+
id_sending_agent_address: string | null;
|
|
718382
|
+
id_receiving_agent: string | null;
|
|
718383
|
+
id_receiving_agent_address: string | null;
|
|
718384
|
+
id_carrier_shipping_line: string | null;
|
|
718385
|
+
id_carrier_airline: string | null;
|
|
718386
|
+
id_creditor_origin: string | null;
|
|
718387
|
+
id_creditor_origin_address: string | null;
|
|
718388
|
+
id_creditor_destination: string | null;
|
|
718389
|
+
id_creditor_destination_address: string | null;
|
|
718390
|
+
consol_number: string | null;
|
|
718391
|
+
trip_number: string | null;
|
|
718392
|
+
aircraft_type: string | null;
|
|
718393
|
+
aircraft_registration: string | null;
|
|
718394
|
+
mawb_number: string | null;
|
|
718395
|
+
bol_number: string | null;
|
|
718396
|
+
carrier_booking_reference: string | null;
|
|
718397
|
+
agent_reference: string | null;
|
|
718398
|
+
estimated_departure: Date | null;
|
|
718399
|
+
estimated_arrival: Date | null;
|
|
718400
|
+
actual_departure: Date | null;
|
|
718401
|
+
actual_arrival: Date | null;
|
|
718402
|
+
is_neutral_mawb: boolean | null;
|
|
718403
|
+
};
|
|
718404
|
+
log: {
|
|
718405
|
+
consol: {
|
|
718406
|
+
data: {
|
|
718407
|
+
id: string;
|
|
718408
|
+
id_log_type: string | null;
|
|
718409
|
+
url: string | null;
|
|
718410
|
+
params: SimpleJson;
|
|
718411
|
+
action: string | null;
|
|
718412
|
+
action_by: string | null;
|
|
718413
|
+
action_id: string | null;
|
|
718414
|
+
action_at: Date | null;
|
|
718415
|
+
id_forwarding_consol: string | null;
|
|
718416
|
+
} | undefined;
|
|
718417
|
+
};
|
|
718418
|
+
shipments: {
|
|
718419
|
+
data: {
|
|
718420
|
+
id: string;
|
|
718421
|
+
id_log_type: string | null;
|
|
718422
|
+
url: string | null;
|
|
718423
|
+
params: SimpleJson;
|
|
718424
|
+
action: string | null;
|
|
718425
|
+
action_by: string | null;
|
|
718426
|
+
action_id: string | null;
|
|
718427
|
+
action_at: Date | null;
|
|
718428
|
+
id_forwarding_shipment: string | null;
|
|
718429
|
+
} | undefined;
|
|
718430
|
+
}[];
|
|
718431
|
+
};
|
|
718432
|
+
} | undefined;
|
|
718433
|
+
meta: object;
|
|
718434
|
+
}>;
|
|
718351
718435
|
delete: MutationProcedure<{
|
|
718352
718436
|
input: {
|
|
718353
718437
|
id?: string | number | bigint | null | undefined;
|
|
@@ -726280,90 +726364,6 @@ declare const cargoflowRouter: BuiltRouter<{
|
|
|
726280
726364
|
} | undefined;
|
|
726281
726365
|
meta: object;
|
|
726282
726366
|
}>;
|
|
726283
|
-
updateShipmentsConnect: MutationProcedure<{
|
|
726284
|
-
input: {
|
|
726285
|
-
mode: "set" | "connect" | "disconnect";
|
|
726286
|
-
id_forwarding_consol?: string | number | bigint | null | undefined;
|
|
726287
|
-
id_forwarding_shipments?: (string | number | bigint)[] | null | undefined;
|
|
726288
|
-
};
|
|
726289
|
-
output: {
|
|
726290
|
-
data: {
|
|
726291
|
-
_count: {
|
|
726292
|
-
forwarding_shipments: number;
|
|
726293
|
-
};
|
|
726294
|
-
is_active: boolean | null;
|
|
726295
|
-
id: string;
|
|
726296
|
-
logic_code: string | null;
|
|
726297
|
-
name: string | null;
|
|
726298
|
-
code: string | null;
|
|
726299
|
-
other_reference: string | null;
|
|
726300
|
-
created_at: Date | null;
|
|
726301
|
-
created_by: string | null;
|
|
726302
|
-
updated_at: Date | null;
|
|
726303
|
-
updated_by: string | null;
|
|
726304
|
-
id_transport_mode: string | null;
|
|
726305
|
-
id_container_shipping_type: string | null;
|
|
726306
|
-
id_service_level: string | null;
|
|
726307
|
-
id_type: string | null;
|
|
726308
|
-
id_load_port: string | null;
|
|
726309
|
-
id_discharge_port: string | null;
|
|
726310
|
-
id_vessel: string | null;
|
|
726311
|
-
id_payment_type: string | null;
|
|
726312
|
-
id_sending_agent: string | null;
|
|
726313
|
-
id_sending_agent_address: string | null;
|
|
726314
|
-
id_receiving_agent: string | null;
|
|
726315
|
-
id_receiving_agent_address: string | null;
|
|
726316
|
-
id_carrier_shipping_line: string | null;
|
|
726317
|
-
id_carrier_airline: string | null;
|
|
726318
|
-
id_creditor_origin: string | null;
|
|
726319
|
-
id_creditor_origin_address: string | null;
|
|
726320
|
-
id_creditor_destination: string | null;
|
|
726321
|
-
id_creditor_destination_address: string | null;
|
|
726322
|
-
consol_number: string | null;
|
|
726323
|
-
trip_number: string | null;
|
|
726324
|
-
aircraft_type: string | null;
|
|
726325
|
-
aircraft_registration: string | null;
|
|
726326
|
-
mawb_number: string | null;
|
|
726327
|
-
bol_number: string | null;
|
|
726328
|
-
carrier_booking_reference: string | null;
|
|
726329
|
-
agent_reference: string | null;
|
|
726330
|
-
estimated_departure: Date | null;
|
|
726331
|
-
estimated_arrival: Date | null;
|
|
726332
|
-
actual_departure: Date | null;
|
|
726333
|
-
actual_arrival: Date | null;
|
|
726334
|
-
is_neutral_mawb: boolean | null;
|
|
726335
|
-
};
|
|
726336
|
-
log: {
|
|
726337
|
-
consol: {
|
|
726338
|
-
data: {
|
|
726339
|
-
id: string;
|
|
726340
|
-
id_log_type: string | null;
|
|
726341
|
-
url: string | null;
|
|
726342
|
-
params: SimpleJson;
|
|
726343
|
-
action: string | null;
|
|
726344
|
-
action_by: string | null;
|
|
726345
|
-
action_id: string | null;
|
|
726346
|
-
action_at: Date | null;
|
|
726347
|
-
id_forwarding_consol: string | null;
|
|
726348
|
-
} | undefined;
|
|
726349
|
-
};
|
|
726350
|
-
shipments: {
|
|
726351
|
-
data: {
|
|
726352
|
-
id: string;
|
|
726353
|
-
id_log_type: string | null;
|
|
726354
|
-
url: string | null;
|
|
726355
|
-
params: SimpleJson;
|
|
726356
|
-
action: string | null;
|
|
726357
|
-
action_by: string | null;
|
|
726358
|
-
action_id: string | null;
|
|
726359
|
-
action_at: Date | null;
|
|
726360
|
-
id_forwarding_shipment: string | null;
|
|
726361
|
-
} | undefined;
|
|
726362
|
-
}[];
|
|
726363
|
-
};
|
|
726364
|
-
} | undefined;
|
|
726365
|
-
meta: object;
|
|
726366
|
-
}>;
|
|
726367
726367
|
delete: MutationProcedure<{
|
|
726368
726368
|
input: {
|
|
726369
726369
|
id?: string | number | bigint | null | undefined;
|