cardus 0.0.43 → 0.0.44
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.js +2 -1
- package/index.ts +2 -1
- package/package.json +1 -1
- package/types/index.ts +3 -0
package/dist/index.js
CHANGED
|
@@ -65,7 +65,8 @@ class IntegrationManager {
|
|
|
65
65
|
: null,
|
|
66
66
|
marketplaceId: order.marketplaceId,
|
|
67
67
|
id_documento_holded: order.idDocumentoHolded,
|
|
68
|
-
tipo_documento_holded: order.tipoDocumentoHolded || ''
|
|
68
|
+
tipo_documento_holded: order.tipoDocumentoHolded || '',
|
|
69
|
+
agencia_envio_integracion: order.agenciaEnvioIntegracion || ''
|
|
69
70
|
});
|
|
70
71
|
};
|
|
71
72
|
this.insertTempShipmentLines = (_c) => __awaiter(this, [_c], void 0, function* ({ idEnvioTemporal, group }) {
|
package/index.ts
CHANGED
|
@@ -326,7 +326,8 @@ export class IntegrationManager {
|
|
|
326
326
|
: null,
|
|
327
327
|
marketplaceId: order.marketplaceId,
|
|
328
328
|
id_documento_holded: order.idDocumentoHolded,
|
|
329
|
-
tipo_documento_holded: order.tipoDocumentoHolded || ''
|
|
329
|
+
tipo_documento_holded: order.tipoDocumentoHolded || '',
|
|
330
|
+
agencia_envio_integracion: order.agenciaEnvioIntegracion || ''
|
|
330
331
|
});
|
|
331
332
|
};
|
|
332
333
|
|
package/package.json
CHANGED
package/types/index.ts
CHANGED
|
@@ -97,6 +97,7 @@ export type ModifiedOrder = {
|
|
|
97
97
|
tipoDocumentoHolded?: string;
|
|
98
98
|
isPriority: 0 | 1;
|
|
99
99
|
idCarrier?: number | null;
|
|
100
|
+
agenciaEnvioIntegracion: string | null;
|
|
100
101
|
};
|
|
101
102
|
|
|
102
103
|
export interface ModifiedOrderExtended extends ModifiedOrder {
|
|
@@ -166,6 +167,7 @@ export type IntegrationsService = {
|
|
|
166
167
|
marketplaceId?: string | null;
|
|
167
168
|
id_documento_holded?: string;
|
|
168
169
|
tipo_documento_holded?: string;
|
|
170
|
+
agencia_envio_integracion: string | null;
|
|
169
171
|
}) => number | false;
|
|
170
172
|
|
|
171
173
|
insertTempShipmentLines: (params: {
|
|
@@ -353,4 +355,5 @@ type InsertContentShipmentExternal = {
|
|
|
353
355
|
marketplaceId?: string | null;
|
|
354
356
|
id_documento_holded?: string;
|
|
355
357
|
tipo_documento_holded?: string;
|
|
358
|
+
agencia_envio_integracion: string | null;
|
|
356
359
|
};
|