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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/index.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.43",
3
+ "version": "0.0.45",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
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 {