cardus 0.0.106 → 0.0.107
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 -2
package/package.json
CHANGED
package/types/index.ts
CHANGED
|
@@ -123,7 +123,7 @@ export type ModifiedOrder = {
|
|
|
123
123
|
telefonoLLegada: string | undefined;
|
|
124
124
|
emailLLegada: string | undefined;
|
|
125
125
|
cantidadContrareembolso: number | null;
|
|
126
|
-
codigoEnvioExterno
|
|
126
|
+
codigoEnvioExterno?: string;
|
|
127
127
|
idInternoShopify?: string;
|
|
128
128
|
precio: number | null;
|
|
129
129
|
fechaCreacionExterna?: string | null;
|
|
@@ -468,7 +468,7 @@ export type InsertContentShipmentDetail = {
|
|
|
468
468
|
|
|
469
469
|
type InsertContentShipmentExternal = {
|
|
470
470
|
id_envio_temporal_usuario: number;
|
|
471
|
-
codigo_envio_externo: string;
|
|
471
|
+
codigo_envio_externo: string | undefined;
|
|
472
472
|
id_usuario: number;
|
|
473
473
|
fecha_hora_creacion: string;
|
|
474
474
|
servicio: Type;
|