cloudcommerce 0.2.3 → 0.3.0
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/CHANGELOG.md +31 -0
- package/ecomplus-stores/monocard/functions/ssr/package.json +0 -2
- package/ecomplus-stores/tia-sonia/functions/ssr/package.json +0 -2
- package/package.json +6 -6
- package/packages/api/package.json +1 -1
- package/packages/apps/correios/package.json +2 -2
- package/packages/apps/custom-payment/package.json +1 -1
- package/packages/apps/custom-shipping/package.json +1 -1
- package/packages/apps/datafrete/package.json +2 -2
- package/packages/apps/discounts/package.json +1 -1
- package/packages/apps/emails/package.json +1 -1
- package/packages/apps/fb-conversions/package.json +1 -1
- package/packages/apps/frenet/package.json +2 -2
- package/packages/apps/galaxpay/package.json +2 -2
- package/packages/apps/google-analytics/package.json +2 -2
- package/packages/apps/infinitepay/package.json +2 -2
- package/packages/apps/jadlog/package.json +2 -2
- package/packages/apps/loyalty-points/package.json +1 -1
- package/packages/apps/melhor-envio/CHANGELOG.md +1 -0
- package/packages/apps/melhor-envio/README.md +1 -0
- package/packages/apps/melhor-envio/events.js +1 -0
- package/packages/apps/melhor-envio/lib/functions-lib/database.d.ts +18 -0
- package/packages/apps/melhor-envio/lib/functions-lib/database.js +115 -0
- package/packages/apps/melhor-envio/lib/functions-lib/database.js.map +1 -0
- package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.d.ts +7 -0
- package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.js +112 -0
- package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.js.map +1 -0
- package/packages/apps/melhor-envio/lib/functions-lib/new-label.d.ts +42 -0
- package/packages/apps/melhor-envio/lib/functions-lib/new-label.js +185 -0
- package/packages/apps/melhor-envio/lib/functions-lib/new-label.js.map +1 -0
- package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.d.ts +5 -0
- package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.js +40 -0
- package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.js.map +1 -0
- package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.d.ts +2 -0
- package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.js +164 -0
- package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.js.map +1 -0
- package/packages/apps/melhor-envio/lib/index.d.ts +1 -0
- package/packages/apps/melhor-envio/lib/index.js +2 -0
- package/packages/apps/melhor-envio/lib/index.js.map +1 -0
- package/packages/apps/melhor-envio/lib/melhor-envio-events.d.ts +6 -0
- package/packages/apps/melhor-envio/lib/melhor-envio-events.js +17 -0
- package/packages/apps/melhor-envio/lib/melhor-envio-events.js.map +1 -0
- package/packages/apps/melhor-envio/lib/melhor-envio.d.ts +2 -0
- package/packages/apps/melhor-envio/lib/melhor-envio.js +6 -0
- package/packages/apps/melhor-envio/lib/melhor-envio.js.map +1 -0
- package/packages/apps/melhor-envio/lib-mjs/calculate-melhor-envio.mjs +341 -0
- package/packages/apps/melhor-envio/lib-mjs/functions/client-melhor-envio.mjs +14 -0
- package/packages/apps/melhor-envio/lib-mjs/functions/error-handling.mjs +62 -0
- package/packages/apps/melhor-envio/lib-mjs/functions/new-shipment.mjs +119 -0
- package/packages/apps/melhor-envio/package.json +36 -0
- package/packages/apps/melhor-envio/src/functions-lib/database.ts +140 -0
- package/packages/apps/melhor-envio/src/functions-lib/events-to-melhor-envio.ts +137 -0
- package/packages/apps/melhor-envio/src/functions-lib/new-label.ts +214 -0
- package/packages/apps/melhor-envio/src/functions-lib/order-is-valid.ts +51 -0
- package/packages/apps/melhor-envio/src/functions-lib/tracking-codes.ts +191 -0
- package/packages/apps/melhor-envio/src/index.ts +1 -0
- package/packages/apps/melhor-envio/src/melhor-envio-events.ts +24 -0
- package/packages/apps/melhor-envio/src/melhor-envio.ts +7 -0
- package/packages/apps/melhor-envio/tsconfig.json +6 -0
- package/packages/apps/mercadopago/package.json +2 -2
- package/packages/apps/pagarme/package.json +2 -2
- package/packages/apps/paghiper/package.json +3 -3
- package/packages/apps/pix/package.json +2 -2
- package/packages/apps/tiny-erp/package.json +2 -2
- package/packages/cli/package.json +1 -1
- package/packages/config/package.json +1 -1
- package/packages/emails/package.json +3 -3
- package/packages/events/lib/firebase.js +2 -0
- package/packages/events/lib/firebase.js.map +1 -1
- package/packages/events/package.json +2 -1
- package/packages/events/src/firebase.ts +2 -0
- package/packages/firebase/lib/config.d.ts +4 -0
- package/packages/firebase/lib/config.js +7 -0
- package/packages/firebase/lib/config.js.map +1 -1
- package/packages/firebase/package.json +2 -2
- package/packages/firebase/src/config.ts +8 -0
- package/packages/i18n/lib/en_us/i19buyTogether.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyTogetherWith.txt +1 -0
- package/packages/i18n/lib/en_us/i19report.txt +1 -0
- package/packages/i18n/lib/en_us/i19toggleMenu.txt +1 -0
- package/packages/i18n/lib/en_us/i19uponRequest.txt +1 -0
- package/packages/i18n/lib/en_us/i19usedPoints.txt +1 -0
- package/packages/i18n/lib/en_us.d.ts +6 -0
- package/packages/i18n/lib/en_us.js +6 -0
- package/packages/i18n/lib/en_us.js.map +1 -1
- package/packages/i18n/lib/pt_br/i19buyTogether.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyTogetherWith.txt +1 -0
- package/packages/i18n/lib/pt_br/i19report.txt +1 -0
- package/packages/i18n/lib/pt_br/i19toggleMenu.txt +1 -0
- package/packages/i18n/lib/pt_br/i19uponRequest.txt +1 -0
- package/packages/i18n/lib/pt_br/i19usedPoints.txt +1 -0
- package/packages/i18n/lib/pt_br.d.ts +6 -0
- package/packages/i18n/lib/pt_br.js +6 -0
- package/packages/i18n/lib/pt_br.js.map +1 -1
- package/packages/i18n/package.json +1 -1
- package/packages/i18n/src/en_us.ts +6 -0
- package/packages/i18n/src/pt_br.ts +6 -0
- package/packages/modules/lib/firebase/call-app-module.js +5 -0
- package/packages/modules/lib/firebase/call-app-module.js.map +1 -1
- package/packages/modules/package.json +3 -2
- package/packages/modules/src/firebase/call-app-module.ts +5 -0
- package/packages/passport/package.json +1 -1
- package/packages/ssr/package.json +3 -4
- package/packages/storefront/.eslintrc.cjs +1 -1
- package/packages/storefront/astro.config.mjs +8 -1
- package/packages/storefront/dist/client/_astro/PitchBar.209c6645.js +1 -0
- package/packages/storefront/dist/client/_astro/Prices.6fbcb5ac.js +1 -0
- package/packages/storefront/dist/client/_astro/Prices.vue_vue_type_script_setup_true_lang.44f23680.js +1 -0
- package/packages/storefront/dist/client/_astro/ProductCard.ee5eee91.js +1 -0
- package/packages/storefront/dist/client/_astro/ShopHeader.b801c785.js +1 -0
- package/packages/storefront/dist/client/_astro/_...slug_.32968ccf.css +1 -0
- package/packages/storefront/dist/client/_astro/client.5a46cc02.js +1 -0
- package/packages/storefront/dist/client/_astro/index.844a4059.js +1 -0
- package/packages/storefront/dist/client/_astro/{modules-info.dde776b4.js → modules-info.d9373e21.js} +1 -1
- package/packages/storefront/dist/client/_astro/runtime-core.esm-bundler.f04cee62.js +1 -0
- package/packages/storefront/dist/client/_astro/runtime-dom.esm-bundler.00313542.js +1 -0
- package/packages/storefront/dist/client/_astro/server.60de185d.css +1 -0
- package/packages/storefront/dist/client/_astro/use-component-variant.58788b6e.js +1 -0
- package/packages/storefront/dist/client/fallback/index.html +13 -7
- package/packages/storefront/dist/client/sw.js +1 -1
- package/packages/storefront/dist/server/chunks/pages/{all.c27193d6.mjs → all.23de4e5c.mjs} +444 -186
- package/packages/storefront/dist/server/chunks/{prerender.89f63027.mjs → prerender.f40361a3.mjs} +0 -0
- package/packages/storefront/dist/server/entry.mjs +39 -4452
- package/packages/storefront/package.json +4 -5
- package/packages/storefront/src/lib/assets/base.css +16 -11
- package/packages/storefront/src/lib/components/Carousel.vue +52 -82
- package/packages/storefront/src/lib/components/Drawer.vue +103 -0
- package/packages/storefront/src/lib/components/PitchBar.vue +16 -11
- package/packages/storefront/src/lib/components/Prices.vue +5 -5
- package/packages/storefront/src/lib/components/ShopHeader.vue +82 -0
- package/packages/storefront/src/lib/components/StickyHeader.vue +71 -43
- package/packages/storefront/src/lib/components/globals/Fade.vue +10 -14
- package/packages/storefront/src/lib/composables/use-component-variant.ts +6 -2
- package/packages/storefront/src/lib/composables/use-prices.ts +4 -2
- package/packages/storefront/src/lib/layouts/BaseBody.astro +1 -0
- package/packages/storefront/src/lib/layouts/PagesHeader.astro +28 -13
- package/packages/storefront/tailwind.config.cjs +4 -0
- package/packages/storefront/uno.config.cjs +1 -1
- package/packages/types/package.json +1 -1
- package/packages/storefront/dist/client/_astro/PitchBar.f3579a5b.js +0 -1
- package/packages/storefront/dist/client/_astro/Prices.8e5cead5.js +0 -1
- package/packages/storefront/dist/client/_astro/Prices.vue_vue_type_script_setup_true_lang.b8cbeb54.js +0 -1
- package/packages/storefront/dist/client/_astro/ProductCard.6d8b6d86.js +0 -1
- package/packages/storefront/dist/client/_astro/StickyHeader.7b0f3963.js +0 -1
- package/packages/storefront/dist/client/_astro/_...slug_.97285eba.css +0 -1
- package/packages/storefront/dist/client/_astro/client.3e777d4c.js +0 -1
- package/packages/storefront/dist/client/_astro/runtime-core.esm-bundler.7cf33881.js +0 -1
- package/packages/storefront/dist/client/_astro/runtime-dom.esm-bundler.1a4c7407.js +0 -1
- package/packages/storefront/dist/client/_astro/server.4d9646d8.css +0 -1
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import type { Orders } from '@cloudcommerce/types';
|
|
2
|
+
import logger from 'firebase-functions/logger';
|
|
3
|
+
import api from '@cloudcommerce/api';
|
|
4
|
+
import config from '@cloudcommerce/firebase/lib/config';
|
|
5
|
+
import meClient from '../../lib-mjs/functions/client-melhor-envio.mjs';
|
|
6
|
+
import errorHandling from '../../lib-mjs/functions/error-handling.mjs';
|
|
7
|
+
import db, { Lable } from './database';
|
|
8
|
+
|
|
9
|
+
const getConfig = async () => {
|
|
10
|
+
try {
|
|
11
|
+
const app = (await api.get(
|
|
12
|
+
`applications?app_id=${config.get().apps.melhorEnvio}&fields=hidden_data`,
|
|
13
|
+
)).data.result;
|
|
14
|
+
|
|
15
|
+
return app[0].hidden_data;
|
|
16
|
+
} catch (err) {
|
|
17
|
+
logger.error('Error =>', err);
|
|
18
|
+
return null;
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
const handleTrackingCodes = async () => {
|
|
23
|
+
const appConfig = await getConfig();
|
|
24
|
+
const accessToken: string | undefined = appConfig?.access_token;
|
|
25
|
+
const isSandbox = appConfig?.sandbox;
|
|
26
|
+
|
|
27
|
+
// eslint-disable-next-line no-async-promise-executor
|
|
28
|
+
const trackingCodes = new Promise(async (resolve, reject) => {
|
|
29
|
+
logger.log('>> Inciando rastreio de etiquetas');
|
|
30
|
+
|
|
31
|
+
try {
|
|
32
|
+
const labels: Lable[] = await db.getAllLabels();
|
|
33
|
+
// .then(labels => {
|
|
34
|
+
const checkStatus = async (queue = 0) => {
|
|
35
|
+
const label = labels[queue];
|
|
36
|
+
if (!label) {
|
|
37
|
+
return resolve(null);
|
|
38
|
+
}
|
|
39
|
+
const next = () => {
|
|
40
|
+
queue += 1;
|
|
41
|
+
return checkStatus(queue);
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
// evita buscar configuração do app para o mesmo storeId
|
|
45
|
+
let order: Orders;
|
|
46
|
+
try {
|
|
47
|
+
order = (await api.get(`orders/${label.resourceId}`)).data;
|
|
48
|
+
} catch (err: any) {
|
|
49
|
+
errorHandling(err);
|
|
50
|
+
if (err.response && err.response.status === 404) {
|
|
51
|
+
await db.deleteLabel(label.id).catch(logger.error);
|
|
52
|
+
}
|
|
53
|
+
return next();
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
try {
|
|
57
|
+
const { data } = await meClient(accessToken, isSandbox)
|
|
58
|
+
.post('/shipment/tracking', { orders: [label.labelId] });
|
|
59
|
+
|
|
60
|
+
const orderLabel = order.hidden_metafields?.find((metafield) => {
|
|
61
|
+
return metafield.field === 'melhor_envio_label_id' && data[metafield.value];
|
|
62
|
+
});
|
|
63
|
+
if (!orderLabel || !orderLabel.value) {
|
|
64
|
+
return null;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
const tracking = data[orderLabel.value as unknown as string];
|
|
68
|
+
const shippingLine = order.shipping_lines && order.shipping_lines
|
|
69
|
+
.find(({ app }) => app && app.service_code && app.service_code.startsWith('ME'));
|
|
70
|
+
|
|
71
|
+
if (!shippingLine) {
|
|
72
|
+
return null;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
let shippingLineCurrentStatus = '';
|
|
76
|
+
if (shippingLine.status) {
|
|
77
|
+
shippingLineCurrentStatus = shippingLine.status.current;
|
|
78
|
+
} else {
|
|
79
|
+
shippingLineCurrentStatus = order.fulfillment_status
|
|
80
|
+
? order.fulfillment_status.current : '';
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
let updateTo: string | undefined;
|
|
84
|
+
|
|
85
|
+
switch (tracking.status) {
|
|
86
|
+
case 'posted':
|
|
87
|
+
if (shippingLineCurrentStatus !== 'shipped' && shippingLineCurrentStatus !== 'delivered') {
|
|
88
|
+
updateTo = 'shipped';
|
|
89
|
+
}
|
|
90
|
+
break;
|
|
91
|
+
case 'delivered':
|
|
92
|
+
if (shippingLineCurrentStatus !== 'delivered' && tracking.tracking) {
|
|
93
|
+
updateTo = 'delivered';
|
|
94
|
+
}
|
|
95
|
+
break;
|
|
96
|
+
case 'undelivered':
|
|
97
|
+
if (shippingLineCurrentStatus !== 'returned') {
|
|
98
|
+
updateTo = 'returned';
|
|
99
|
+
}
|
|
100
|
+
break;
|
|
101
|
+
default:
|
|
102
|
+
break;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
if (tracking.tracking && (!shippingLine.tracking_codes
|
|
106
|
+
|| !shippingLine.tracking_codes.length)) {
|
|
107
|
+
try {
|
|
108
|
+
await api.patch(
|
|
109
|
+
`orders/${label.resourceId}/shipping_lines/${shippingLine._id}`,
|
|
110
|
+
{
|
|
111
|
+
tracking_codes: [{
|
|
112
|
+
code: tracking.tracking,
|
|
113
|
+
link: `https://www.melhorrastreio.com.br/rastreio/${tracking.tracking}`,
|
|
114
|
+
}],
|
|
115
|
+
},
|
|
116
|
+
);
|
|
117
|
+
logger.log(`Tracking code para ${order._id} / Pro.: ${tracking.protocol}`);
|
|
118
|
+
} catch (err: any) {
|
|
119
|
+
logger.error(
|
|
120
|
+
`> Error updating shipping_lines on order #${label.resourceId} => `,
|
|
121
|
+
err,
|
|
122
|
+
);
|
|
123
|
+
next();
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
if (updateTo) {
|
|
128
|
+
const body = {
|
|
129
|
+
shipping_line_id: shippingLine._id,
|
|
130
|
+
date_time: new Date().toISOString(),
|
|
131
|
+
status: updateTo,
|
|
132
|
+
notification_code: tracking.id,
|
|
133
|
+
} as any;
|
|
134
|
+
|
|
135
|
+
await api.post(`orders/${label.resourceId}/fulfillments`, body);
|
|
136
|
+
logger.log(`Status do pedido ${order._id} alterado com sucesso para ${updateTo}`);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
if (tracking.status) {
|
|
140
|
+
switch (tracking.status) {
|
|
141
|
+
case 'delivered':
|
|
142
|
+
case 'undelivered':
|
|
143
|
+
case 'canceled':
|
|
144
|
+
await db.deleteLabel(label.id);
|
|
145
|
+
break;
|
|
146
|
+
default:
|
|
147
|
+
break;
|
|
148
|
+
}
|
|
149
|
+
} else {
|
|
150
|
+
await db.updateLabel(tracking.status, label.labelId);
|
|
151
|
+
}
|
|
152
|
+
} catch (err: any) {
|
|
153
|
+
if (err.isAxiosError) {
|
|
154
|
+
const { response } = err;
|
|
155
|
+
if (response && response.status < 500) {
|
|
156
|
+
const payload = {
|
|
157
|
+
labelId: label.labelId,
|
|
158
|
+
status: response.status,
|
|
159
|
+
data: response.data,
|
|
160
|
+
config: response.config,
|
|
161
|
+
};
|
|
162
|
+
logger.error('Tracking_codes_err', JSON.stringify(payload, undefined, 4));
|
|
163
|
+
}
|
|
164
|
+
} else {
|
|
165
|
+
err.libCode = 'Tracking_codes_err';
|
|
166
|
+
logger.error(err);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
return next();
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
await checkStatus();
|
|
173
|
+
} catch (err) {
|
|
174
|
+
reject(err);
|
|
175
|
+
}
|
|
176
|
+
});
|
|
177
|
+
|
|
178
|
+
if (appConfig && accessToken && appConfig.disable_tracking) {
|
|
179
|
+
await trackingCodes.catch((err) => {
|
|
180
|
+
logger.error('> Error => ', err);
|
|
181
|
+
});
|
|
182
|
+
|
|
183
|
+
if (new Date().getHours() === 23) {
|
|
184
|
+
await db.clearLabels().catch((err) => {
|
|
185
|
+
logger.error('> Error removing old Lables => ', err);
|
|
186
|
+
});
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
};
|
|
190
|
+
|
|
191
|
+
export default handleTrackingCodes;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './melhor-envio';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/* eslint-disable import/prefer-default-export */
|
|
2
|
+
import '@cloudcommerce/firebase/lib/init';
|
|
3
|
+
import * as functions from 'firebase-functions/v1';
|
|
4
|
+
import config from '@cloudcommerce/firebase/lib/config';
|
|
5
|
+
import {
|
|
6
|
+
createAppEventsFunction,
|
|
7
|
+
ApiEventHandler,
|
|
8
|
+
} from '@cloudcommerce/firebase/lib/helpers/pubsub';
|
|
9
|
+
import handleApiEvent from './functions-lib/events-to-melhor-envio';
|
|
10
|
+
import handleTrackingCodes from './functions-lib/tracking-codes';
|
|
11
|
+
|
|
12
|
+
export const melhorenvio = {
|
|
13
|
+
cronTrackingCodes: functions.region(config.get().httpsFunctionOptions.region).pubsub
|
|
14
|
+
.schedule('*/30 * * * *')
|
|
15
|
+
.onRun(() => {
|
|
16
|
+
return handleTrackingCodes;
|
|
17
|
+
}),
|
|
18
|
+
|
|
19
|
+
onStoreEvent: createAppEventsFunction(
|
|
20
|
+
'melhorEnvio',
|
|
21
|
+
handleApiEvent as ApiEventHandler,
|
|
22
|
+
),
|
|
23
|
+
|
|
24
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/* eslint-disable import/prefer-default-export */
|
|
2
|
+
import type { AppModuleBody } from '@cloudcommerce/types';
|
|
3
|
+
import handleCalculateShipping from '../lib-mjs/calculate-melhor-envio.mjs';
|
|
4
|
+
|
|
5
|
+
export const calculateShipping = async (modBody: AppModuleBody) => {
|
|
6
|
+
return handleCalculateShipping(modBody);
|
|
7
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudcommerce/app-mercadopago",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"description": "E-Com Plus Cloud Commerce app to integrate Mercado Pago",
|
|
6
6
|
"main": "lib/mercadopago.js",
|
|
7
7
|
"exports": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@cloudcommerce/api": "workspace:*",
|
|
27
27
|
"@cloudcommerce/firebase": "workspace:*",
|
|
28
|
-
"axios": "^1.2.
|
|
28
|
+
"axios": "^1.2.6",
|
|
29
29
|
"firebase-admin": "^11.5.0",
|
|
30
30
|
"firebase-functions": "^4.2.0"
|
|
31
31
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudcommerce/app-pagarme",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"description": "E-Com Plus Cloud Commerce app to integrate Pagar.me",
|
|
6
6
|
"main": "lib/pagarme.js",
|
|
7
7
|
"exports": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@cloudcommerce/api": "workspace:*",
|
|
27
27
|
"@cloudcommerce/firebase": "workspace:*",
|
|
28
|
-
"axios": "^1.2.
|
|
28
|
+
"axios": "^1.2.6",
|
|
29
29
|
"firebase-admin": "^11.5.0",
|
|
30
30
|
"firebase-functions": "^4.2.0",
|
|
31
31
|
"pagarme": "^4.29.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudcommerce/app-paghiper",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"description": "E-Com Plus Cloud Commerce app to integrate PagHiper",
|
|
6
6
|
"main": "lib/paghiper.js",
|
|
7
7
|
"exports": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@cloudcommerce/api": "workspace:*",
|
|
27
27
|
"@cloudcommerce/firebase": "workspace:*",
|
|
28
|
-
"axios": "^1.2.
|
|
29
|
-
"firebase-admin": "^11.
|
|
28
|
+
"axios": "^1.2.6",
|
|
29
|
+
"firebase-admin": "^11.5.0",
|
|
30
30
|
"firebase-functions": "^4.2.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudcommerce/app-pix",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"description": "E-Com Plus Cloud Commerce app to integrate Pix API (Bacen)",
|
|
6
6
|
"main": "lib/pix.js",
|
|
7
7
|
"exports": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@cloudcommerce/api": "workspace:*",
|
|
27
27
|
"@cloudcommerce/firebase": "workspace:*",
|
|
28
|
-
"axios": "^1.2.
|
|
28
|
+
"axios": "^1.2.6",
|
|
29
29
|
"firebase-admin": "^11.5.0",
|
|
30
30
|
"firebase-functions": "^4.2.0"
|
|
31
31
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudcommerce/app-tiny-erp",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"description": "E-Com Plus Cloud Commerce app for Tiny ERP",
|
|
6
6
|
"main": "lib/tiny-erp.js",
|
|
7
7
|
"repository": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@cloudcommerce/api": "workspace:*",
|
|
23
23
|
"@cloudcommerce/firebase": "workspace:*",
|
|
24
24
|
"@ecomplus/utils": "1.5.0-rc.3",
|
|
25
|
-
"axios": "^1.2.
|
|
25
|
+
"axios": "^1.2.6",
|
|
26
26
|
"firebase-admin": "^11.5.0",
|
|
27
27
|
"firebase-functions": "^4.2.0",
|
|
28
28
|
"form-data": "^4.0.0"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudcommerce/emails",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"description": "E-Com Plus Cloud Commerce",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@cloudcommerce/firebase": "workspace:*",
|
|
26
|
-
"axios": "^1.2.
|
|
26
|
+
"axios": "^1.2.6",
|
|
27
27
|
"ejs": "^3.1.8",
|
|
28
|
-
"nodemailer": "^6.9.
|
|
28
|
+
"nodemailer": "^6.9.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@cloudcommerce/types": "workspace:*",
|
|
@@ -26,4 +26,6 @@ export * from '@cloudcommerce/app-datafrete/webhook';
|
|
|
26
26
|
export * from '@cloudcommerce/app-google-analytics';
|
|
27
27
|
|
|
28
28
|
export * from '@cloudcommerce/app-paghiper/webhook';
|
|
29
|
+
|
|
30
|
+
export * from '@cloudcommerce/app-melhor-envio/events';
|
|
29
31
|
// # sourceMappingURL=firebase.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"firebase.js","sourceRoot":"","sources":["../src/firebase.ts"],"names":[],"mappings":"AAAA,iDAAiD;AACjD,OAAO,kCAAkC,CAAC;AAE1C,cAAc,6BAA6B,CAAC;AAE5C,cAAc,wCAAwC,CAAC;AAEvD,cAAc,2BAA2B,CAAC;AAE1C,cAAc,oCAAoC,CAAC;AAEnD,cAAc,gCAAgC,CAAC;AAE/C,cAAc,wCAAwC,CAAC;AAEvD,cAAc,oCAAoC,CAAC;AAEnD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,kCAAkC,CAAC;AAEjD,cAAc,mCAAmC,CAAC;AAElD,cAAc,sCAAsC,CAAC;AAErD,cAAc,qCAAqC,CAAC;AAEpD,cAAc,qCAAqC,CAAC"}
|
|
1
|
+
{"version":3,"file":"firebase.js","sourceRoot":"","sources":["../src/firebase.ts"],"names":[],"mappings":"AAAA,iDAAiD;AACjD,OAAO,kCAAkC,CAAC;AAE1C,cAAc,6BAA6B,CAAC;AAE5C,cAAc,wCAAwC,CAAC;AAEvD,cAAc,2BAA2B,CAAC;AAE1C,cAAc,oCAAoC,CAAC;AAEnD,cAAc,gCAAgC,CAAC;AAE/C,cAAc,wCAAwC,CAAC;AAEvD,cAAc,oCAAoC,CAAC;AAEnD,cAAc,0CAA0C,CAAC;AAEzD,cAAc,kCAAkC,CAAC;AAEjD,cAAc,mCAAmC,CAAC;AAElD,cAAc,sCAAsC,CAAC;AAErD,cAAc,qCAAqC,CAAC;AAEpD,cAAc,qCAAqC,CAAC;AAEpD,cAAc,wCAAwC,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudcommerce/events",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"description": "E-Com Plus Cloud Commerce app events",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"exports": {
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"@cloudcommerce/app-google-analytics": "workspace:*",
|
|
33
33
|
"@cloudcommerce/app-infinitepay": "workspace:*",
|
|
34
34
|
"@cloudcommerce/app-loyalty-points": "workspace:*",
|
|
35
|
+
"@cloudcommerce/app-melhor-envio": "workspace:*",
|
|
35
36
|
"@cloudcommerce/app-mercadopago": "workspace:*",
|
|
36
37
|
"@cloudcommerce/app-pagarme": "workspace:*",
|
|
37
38
|
"@cloudcommerce/app-paghiper": "workspace:*",
|
|
@@ -29,6 +29,9 @@ const fbConversionsEvents = [
|
|
|
29
29
|
const googleAnalyticsEvents = [
|
|
30
30
|
'orders-anyStatusSet',
|
|
31
31
|
];
|
|
32
|
+
const melhorEnvioEvents = [
|
|
33
|
+
'orders-anyStatusSet',
|
|
34
|
+
];
|
|
32
35
|
const {
|
|
33
36
|
SETTINGS_FILEPATH, DEPLOY_REGION, SSR_DEPLOY_REGION, SSR_DEPLOY_MEMORY, SSR_DEPLOY_TIMEOUT_SECONDS, SSR_DEPLOY_MIN_INSTANCES,
|
|
34
37
|
} = process.env;
|
|
@@ -112,6 +115,10 @@ const mergeConfig = {
|
|
|
112
115
|
pagHiper: {
|
|
113
116
|
appId: 1251,
|
|
114
117
|
},
|
|
118
|
+
melhorEnvio: {
|
|
119
|
+
appId: 1236,
|
|
120
|
+
events: melhorEnvioEvents,
|
|
121
|
+
},
|
|
115
122
|
},
|
|
116
123
|
cmsSettings,
|
|
117
124
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,IAAI,QAAQ,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACnD,OAAO,MAAsB,MAAM,uBAAuB,CAAC;AAE3D,MAAM,aAAa,GAAmB;IACpC,qBAAqB;IACrB,cAAc;IACd,mBAAmB;IACnB,sBAAsB;CACvB,CAAC;AAEF,MAAM,YAAY,GAAmB;IACnC,YAAY;IACZ,qBAAqB;CACtB,CAAC;AAEF,MAAM,cAAc,GAAmB;IACrC,kBAAkB;CACnB,CAAC;AAEF,MAAM,mBAAmB,GAAmB;IAC1C,YAAY;IACZ,qBAAqB;CACtB,CAAC;AAEF,MAAM,YAAY,GAAmB;IACnC,YAAY;CACb,CAAC;AACF,MAAM,mBAAmB,GAAmB;IAC1C,YAAY;IACZ,WAAW;CACZ,CAAC;AAEF,MAAM,qBAAqB,GAAmB;IAC5C,qBAAqB;CACtB,CAAC;AAEF,MAAM,EACJ,iBAAiB,EACjB,aAAa,EACb,iBAAiB,EACjB,iBAAiB,EACjB,0BAA0B,EAC1B,wBAAwB,GACzB,GAAG,OAAO,CAAC,GAAG,CAAC;AAEhB,IAAI,eAAe,GAAG,iBAAiB,IAAI,UAAU,CAAC,iBAAiB,CAAC;IACtE,CAAC,CAAC,iBAAiB;IACnB,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,uBAAuB,CAAC,CAAC;AACrD,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,EAAE;IAChC,eAAe,GAAG,QAAQ,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,qCAAqC,CAAC,CAAC;CAClF;AACD,MAAM,WAAW,GAAgB,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,eAAe,EAAE,OAAO,CAAC,CAAC,CAAC;AAEpF,MAAM,WAAW,GAAG;IAClB,KAAK,EAAE,8BAA8B;IACrC,oBAAoB,EAAE;QACpB,MAAM,EAAE,aAAa,IAAI,oBAAoB;KAC9C;IACD,kBAAkB,EAAE;QAClB,MAAM,EAAE,iBAAiB,IAAI,aAAa;QAC1C,MAAM,EAAG,iBAA6D,IAAI,QAAQ;QAClF,cAAc,EAAE,0BAA0B,CAAC,CAAC,CAAC,MAAM,CAAC,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAE;QACpF,YAAY,EAAE,wBAAwB,CAAC,CAAC,CAAC,MAAM,CAAC,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC;KAC9E;IACD,IAAI,EAAE;QACJ,SAAS,EAAE;YACT,KAAK,EAAE,IAAI;SACZ;QACD,QAAQ,EAAE;YACR,KAAK,EAAE,IAAI;SACZ;QACD,cAAc,EAAE;YACd,KAAK,EAAE,IAAI;SACZ;QACD,MAAM,EAAE;YACN,KAAK,EAAE,IAAI;YACX,MAAM,EAAE,YAAY;SACrB;QACD,OAAO,EAAE;YACP,KAAK,EAAE,MAAM;YACb,MAAM,EAAE,aAAa;SACtB;QACD,WAAW,EAAE;YACX,KAAK,EAAE,MAAM;SACd;QACD,MAAM,EAAE;YACN,KAAK,EAAE,IAAI;YACX,MAAM,EAAE,YAAY;SACrB;QACD,OAAO,EAAE;YACP,KAAK,EAAE,MAAM;SACd;QACD,GAAG,EAAE;YACH,KAAK,EAAE,MAAM;SACd;QACD,WAAW,EAAE;YACX,KAAK,EAAE,MAAM;SACd;QACD,MAAM,EAAE;YACN,KAAK,EAAE,MAAM;SACd;QACD,QAAQ,EAAE;YACR,KAAK,EAAE,MAAM;YACb,MAAM,EAAE,cAAc;SACvB;QACD,aAAa,EAAE;YACb,KAAK,EAAE,MAAM;SACd;QACD,aAAa,EAAE;YACb,KAAK,EAAE,MAAM;YACb,MAAM,EAAE,mBAAmB;SAC5B;QACD,aAAa,EAAE;YACb,KAAK,EAAE,MAAM;YACb,MAAM,EAAE,mBAAmB;SAC5B;QACD,SAAS,EAAE;YACT,KAAK,EAAE,MAAM;SACd;QACD,eAAe,EAAE;YACf,KAAK,EAAE,MAAM;YACb,MAAM,EAAE,qBAAqB;SAC9B;QACD,QAAQ,EAAE;YACR,KAAK,EAAE,IAAI;SACZ;KACF;IACD,WAAW;CACZ,CAAC;AACF,MAAM,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;AAExB,eAAe,MAId,CAAC"}
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudcommerce/firebase",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"description": "E-Com Plus Cloud Commerce on Firebase",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@cloudcommerce/api": "workspace:*",
|
|
33
33
|
"@cloudcommerce/config": "workspace:*",
|
|
34
|
-
"@google-cloud/pubsub": "^3.
|
|
34
|
+
"@google-cloud/pubsub": "^3.3.0",
|
|
35
35
|
"firebase-admin": "^11.5.0",
|
|
36
36
|
"firebase-functions": "^4.2.0",
|
|
37
37
|
"source-map-support": "^0.5.21"
|
|
@@ -36,6 +36,10 @@ const googleAnalyticsEvents: ApiEventName[] = [
|
|
|
36
36
|
'orders-anyStatusSet',
|
|
37
37
|
];
|
|
38
38
|
|
|
39
|
+
const melhorEnvioEvents: ApiEventName[] = [
|
|
40
|
+
'orders-anyStatusSet',
|
|
41
|
+
];
|
|
42
|
+
|
|
39
43
|
const {
|
|
40
44
|
SETTINGS_FILEPATH,
|
|
41
45
|
DEPLOY_REGION,
|
|
@@ -126,6 +130,10 @@ const mergeConfig = {
|
|
|
126
130
|
pagHiper: {
|
|
127
131
|
appId: 1251,
|
|
128
132
|
},
|
|
133
|
+
melhorEnvio: {
|
|
134
|
+
appId: 1236,
|
|
135
|
+
events: melhorEnvioEvents,
|
|
136
|
+
},
|
|
129
137
|
},
|
|
130
138
|
cmsSettings,
|
|
131
139
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Buy together
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Buy together with
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Report
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Toggle menu
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Upon request
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Used points
|
|
@@ -104,6 +104,8 @@ export declare const i19buyers = "Buyers";
|
|
|
104
104
|
export declare const i19buyersProfile = "Buyers profile";
|
|
105
105
|
export declare const i19buyNow = "Buy now";
|
|
106
106
|
export declare const i19buyOnWhatsApp = "Buy on WhatsApp";
|
|
107
|
+
export declare const i19buyTogether = "Buy together";
|
|
108
|
+
export declare const i19buyTogetherWith = "Buy together with";
|
|
107
109
|
export declare const i19buyKit = "Buy kit";
|
|
108
110
|
export declare const i19by = "by";
|
|
109
111
|
export declare const i19brand = "Brand";
|
|
@@ -701,6 +703,7 @@ export declare const i19remove = "Remove";
|
|
|
701
703
|
export declare const i19removed = "Removed";
|
|
702
704
|
export declare const i19removeFromFavorites = "Remove from favorites";
|
|
703
705
|
export declare const i19reopenOrder = "Reopen order";
|
|
706
|
+
export declare const i19report = "Report";
|
|
704
707
|
export declare const i19require = "Require";
|
|
705
708
|
export declare const i19required = "Required";
|
|
706
709
|
export declare const i19requiredEmail = "Required email";
|
|
@@ -858,6 +861,7 @@ export declare const i19to = "To";
|
|
|
858
861
|
export declare const i19toEarn = "To earn";
|
|
859
862
|
export declare const i19toPay = "To pay";
|
|
860
863
|
export declare const i19today = "Today";
|
|
864
|
+
export declare const i19toggleMenu = "Toggle menu";
|
|
861
865
|
export declare const i19token = "Token";
|
|
862
866
|
export declare const i19total = "Total";
|
|
863
867
|
export declare const i19totalAmount = "Total amount";
|
|
@@ -895,7 +899,9 @@ export declare const i19updatedAt = "Updated at";
|
|
|
895
899
|
export declare const i19upload = "Upload";
|
|
896
900
|
export declare const i19uploadLogo = "Upload logo";
|
|
897
901
|
export declare const i19uploadTable = "Upload table";
|
|
902
|
+
export declare const i19uponRequest = "Upon request";
|
|
898
903
|
export declare const i19upTo = "Up to";
|
|
904
|
+
export declare const i19usedPoints = "Used points";
|
|
899
905
|
export declare const i19user = "User";
|
|
900
906
|
export declare const i19userFound = "User found";
|
|
901
907
|
export declare const i19username = "Username";
|
|
@@ -105,6 +105,8 @@ export const i19buyers = 'Buyers';
|
|
|
105
105
|
export const i19buyersProfile = 'Buyers profile';
|
|
106
106
|
export const i19buyNow = 'Buy now';
|
|
107
107
|
export const i19buyOnWhatsApp = 'Buy on WhatsApp';
|
|
108
|
+
export const i19buyTogether = 'Buy together';
|
|
109
|
+
export const i19buyTogetherWith = 'Buy together with';
|
|
108
110
|
export const i19buyKit = 'Buy kit';
|
|
109
111
|
export const i19by = 'by';
|
|
110
112
|
export const i19brand = 'Brand';
|
|
@@ -702,6 +704,7 @@ export const i19remove = 'Remove';
|
|
|
702
704
|
export const i19removed = 'Removed';
|
|
703
705
|
export const i19removeFromFavorites = 'Remove from favorites';
|
|
704
706
|
export const i19reopenOrder = 'Reopen order';
|
|
707
|
+
export const i19report = 'Report';
|
|
705
708
|
export const i19require = 'Require';
|
|
706
709
|
export const i19required = 'Required';
|
|
707
710
|
export const i19requiredEmail = 'Required email';
|
|
@@ -859,6 +862,7 @@ export const i19to = 'To';
|
|
|
859
862
|
export const i19toEarn = 'To earn';
|
|
860
863
|
export const i19toPay = 'To pay';
|
|
861
864
|
export const i19today = 'Today';
|
|
865
|
+
export const i19toggleMenu = 'Toggle menu';
|
|
862
866
|
export const i19token = 'Token';
|
|
863
867
|
export const i19total = 'Total';
|
|
864
868
|
export const i19totalAmount = 'Total amount';
|
|
@@ -896,7 +900,9 @@ export const i19updatedAt = 'Updated at';
|
|
|
896
900
|
export const i19upload = 'Upload';
|
|
897
901
|
export const i19uploadLogo = 'Upload logo';
|
|
898
902
|
export const i19uploadTable = 'Upload table';
|
|
903
|
+
export const i19uponRequest = 'Upon request';
|
|
899
904
|
export const i19upTo = 'Up to';
|
|
905
|
+
export const i19usedPoints = 'Used points';
|
|
900
906
|
export const i19user = 'User';
|
|
901
907
|
export const i19userFound = 'User found';
|
|
902
908
|
export const i19username = 'Username';
|