cardus 0.0.43 → 0.0.45
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/package.json +1 -1
- package/types/index.ts +2 -0
package/package.json
CHANGED
package/types/index.ts
CHANGED
|
@@ -33,6 +33,7 @@ export type Shipment = {
|
|
|
33
33
|
codigo_envio_externo: string;
|
|
34
34
|
id_almacen: number;
|
|
35
35
|
priority: 0 | 1;
|
|
36
|
+
agencia_envio_integracion: string | null;
|
|
36
37
|
};
|
|
37
38
|
|
|
38
39
|
const shipmentTypes = {
|
|
@@ -97,6 +98,7 @@ export type ModifiedOrder = {
|
|
|
97
98
|
tipoDocumentoHolded?: string;
|
|
98
99
|
isPriority: 0 | 1;
|
|
99
100
|
idCarrier?: number | null;
|
|
101
|
+
agenciaEnvioIntegracion: string | null;
|
|
100
102
|
};
|
|
101
103
|
|
|
102
104
|
export interface ModifiedOrderExtended extends ModifiedOrder {
|