@infuro/cms-core 1.0.61 → 1.0.62

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 (50) hide show
  1. package/dist/admin.cjs +3621 -2639
  2. package/dist/admin.js +2412 -1430
  3. package/dist/api.cjs +41 -37
  4. package/dist/api.js +9 -5
  5. package/dist/{chunk-URN7GS23.js → chunk-6LV36PCL.js} +199 -1059
  6. package/dist/{chunk-O2642WVS.js → chunk-6XAVZE4I.js} +17 -3
  7. package/dist/{chunk-BXYZDMTZ.cjs → chunk-AXMP2U43.cjs} +3 -94
  8. package/dist/{chunk-T3HPSF7K.js → chunk-AYWDQFJZ.js} +3 -0
  9. package/dist/chunk-CTIEAHQL.cjs +96 -0
  10. package/dist/chunk-GWDI752Q.js +83 -0
  11. package/dist/chunk-GZGFNVTK.js +886 -0
  12. package/dist/chunk-H3IVLIPR.cjs +86 -0
  13. package/dist/{chunk-2KUCQVAQ.js → chunk-HMLVPIJR.js} +2 -91
  14. package/dist/{chunk-V25RDUOU.cjs → chunk-LRD4CGOG.cjs} +38 -4
  15. package/dist/{chunk-73WVHINE.cjs → chunk-LVQSG25Y.cjs} +18 -4
  16. package/dist/chunk-NMYGQWHV.js +93 -0
  17. package/dist/chunk-OVTOP42W.js +199 -0
  18. package/dist/{chunk-CNAHVRRU.cjs → chunk-QA5C477U.cjs} +676 -312
  19. package/dist/{chunk-UHT4INVW.js → chunk-R6Q67HAS.js} +625 -252
  20. package/dist/{chunk-YSYX4GUD.cjs → chunk-TWTISTZB.cjs} +210 -1080
  21. package/dist/{chunk-77I3KS7V.cjs → chunk-UEE4PTTB.cjs} +3 -0
  22. package/dist/chunk-WFMVD567.cjs +209 -0
  23. package/dist/{chunk-L3525VXI.js → chunk-YW7EF7K7.js} +36 -2
  24. package/dist/chunk-ZPAPCGCR.cjs +899 -0
  25. package/dist/{email-queue-OI2HSCGE.js → email-queue-65PQAG4C.js} +3 -2
  26. package/dist/{email-queue-6NJY6HNM.cjs → email-queue-J7DXYNCE.cjs} +7 -6
  27. package/dist/email-service-F7HA4X63.js +3 -0
  28. package/dist/email-service-RDOTY3CO.cjs +28 -0
  29. package/dist/{emit-order-notification-trigger-TNEZOYEE.cjs → emit-order-notification-trigger-K7URAZHJ.cjs} +4 -4
  30. package/dist/{emit-order-notification-trigger-CZU3V2WE.js → emit-order-notification-trigger-MD7EBODC.js} +2 -2
  31. package/dist/{erp-order-invoice-EYYNR526.cjs → erp-order-invoice-C5GZCOBM.cjs} +6 -5
  32. package/dist/{erp-order-invoice-3GXDE443.js → erp-order-invoice-MYFCXOCY.js} +2 -1
  33. package/dist/index.cjs +363 -314
  34. package/dist/index.d.cts +53 -19
  35. package/dist/index.d.ts +53 -19
  36. package/dist/index.js +75 -26
  37. package/dist/migrations/1783000000000-AddOrderPendingProcessingCompletedTriggers.ts +56 -0
  38. package/dist/migrations/1783100000000-AddSmsToOrderNotificationBindingsChannelEnum.ts +17 -0
  39. package/dist/migrations/1783200000000-AddOrderAssigneeColumns.ts +30 -0
  40. package/dist/order-assignees-handlers-LKMAGLG6.js +150 -0
  41. package/dist/order-assignees-handlers-NPKD64P6.cjs +152 -0
  42. package/dist/order-completion-otp-handlers-3NTOGEA5.js +361 -0
  43. package/dist/order-completion-otp-handlers-4EOLYLAP.cjs +363 -0
  44. package/dist/order-notification-dispatcher-IYMOS4VY.js +10 -0
  45. package/dist/order-notification-dispatcher-X2XM5VUY.cjs +35 -0
  46. package/dist/sms-notification-templates-handlers-SJLO7JGZ.js +47 -0
  47. package/dist/sms-notification-templates-handlers-YSB3L2PK.cjs +49 -0
  48. package/package.json +1 -1
  49. package/dist/order-notification-dispatcher-KJVGLK5E.cjs +0 -24
  50. package/dist/order-notification-dispatcher-ZSFKEYMP.js +0 -7
@@ -0,0 +1,363 @@
1
+ 'use strict';
2
+
3
+ var chunkLVQSG25Y_cjs = require('./chunk-LVQSG25Y.cjs');
4
+ var chunkWFMVD567_cjs = require('./chunk-WFMVD567.cjs');
5
+ var chunkH3IVLIPR_cjs = require('./chunk-H3IVLIPR.cjs');
6
+ require('./chunk-UEE4PTTB.cjs');
7
+ var chunkLRD4CGOG_cjs = require('./chunk-LRD4CGOG.cjs');
8
+ require('./chunk-AXMP2U43.cjs');
9
+ require('./chunk-UPLVMVRX.cjs');
10
+ require('./chunk-CTIEAHQL.cjs');
11
+ var chunkUSNT2KNT_cjs = require('./chunk-USNT2KNT.cjs');
12
+
13
+ // src/api/order-completion-otp-handlers.ts
14
+ function json(data, init) {
15
+ return new Response(JSON.stringify(data), {
16
+ status: init?.status ?? 200,
17
+ headers: {
18
+ "Content-Type": "application/json",
19
+ ...init?.headers || {}
20
+ }
21
+ });
22
+ }
23
+ chunkUSNT2KNT_cjs.__name(json, "json");
24
+ function maskEmail(email) {
25
+ if (!email) return "";
26
+ const parts = email.split("@");
27
+ if (parts.length !== 2) return "***";
28
+ const name = parts[0];
29
+ const domain = parts[1];
30
+ if (name.length <= 2) return `${name[0]}***@${domain}`;
31
+ return `${name.slice(0, 2)}***${name.slice(-1)}@${domain}`;
32
+ }
33
+ chunkUSNT2KNT_cjs.__name(maskEmail, "maskEmail");
34
+ function maskPhone(phone) {
35
+ if (!phone) return "";
36
+ const digits = String(phone).replace(/\D/g, "");
37
+ if (digits.length <= 4) return "***";
38
+ return `+${digits.slice(0, 2)} ***${digits.slice(-4)}`;
39
+ }
40
+ chunkUSNT2KNT_cjs.__name(maskPhone, "maskPhone");
41
+ async function getOtpChannelsConfig(dataSource, entityMap) {
42
+ if (!entityMap.configs) {
43
+ return {
44
+ email: true,
45
+ whatsapp: true,
46
+ sms: true,
47
+ push: false
48
+ };
49
+ }
50
+ const rows = await dataSource.getRepository(entityMap.configs).find({
51
+ where: {
52
+ settings: "event_notifications",
53
+ deleted: false
54
+ }
55
+ });
56
+ const map = Object.fromEntries(rows.map((r) => [
57
+ r.key,
58
+ r.value
59
+ ]));
60
+ return {
61
+ email: map.otp_email_enabled !== "false" && map.otp_email_enabled !== "0",
62
+ whatsapp: map.otp_whatsapp_enabled !== "false" && map.otp_whatsapp_enabled !== "0",
63
+ sms: map.otp_sms_enabled !== "false" && map.otp_sms_enabled !== "0",
64
+ push: map.otp_push_enabled === "true" || map.otp_push_enabled === "1"
65
+ };
66
+ }
67
+ chunkUSNT2KNT_cjs.__name(getOtpChannelsConfig, "getOtpChannelsConfig");
68
+ function createOrderCompletionOtpHandlers(dataSource, entityMap, getCms) {
69
+ return {
70
+ /** GET /api/orders/:id/completion-otp/channels */
71
+ async getChannels(req, orderId) {
72
+ if (!entityMap.orders) {
73
+ return json({
74
+ error: "Orders entity not found"
75
+ }, {
76
+ status: 500
77
+ });
78
+ }
79
+ const orderRepo = dataSource.getRepository(entityMap.orders);
80
+ const order = await orderRepo.findOne({
81
+ where: {
82
+ id: orderId,
83
+ deleted: false
84
+ },
85
+ relations: [
86
+ "contact"
87
+ ]
88
+ });
89
+ if (!order) {
90
+ return json({
91
+ error: "Order not found"
92
+ }, {
93
+ status: 404
94
+ });
95
+ }
96
+ const o = order;
97
+ const cfg = await getOtpChannelsConfig(dataSource, entityMap);
98
+ const customerEmail = o.contact?.email?.trim();
99
+ const customerPhone = o.contact?.phone?.trim();
100
+ const configuredChannels = [];
101
+ if (cfg.email) configuredChannels.push("email");
102
+ if (cfg.whatsapp) configuredChannels.push("whatsapp");
103
+ if (cfg.sms) configuredChannels.push("sms");
104
+ if (cfg.push) configuredChannels.push("push");
105
+ const activeChannels = [];
106
+ if (cfg.email && customerEmail) activeChannels.push("email");
107
+ if (cfg.whatsapp && customerPhone) activeChannels.push("whatsapp");
108
+ if (cfg.sms && customerPhone) activeChannels.push("sms");
109
+ if (cfg.push) activeChannels.push("push");
110
+ return json({
111
+ configuredChannels,
112
+ activeChannels,
113
+ maskedEmail: maskEmail(customerEmail),
114
+ maskedPhone: maskPhone(customerPhone),
115
+ rawEmail: customerEmail ?? null,
116
+ rawPhone: customerPhone ?? null
117
+ });
118
+ },
119
+ /** POST /api/orders/:id/completion-otp/send */
120
+ async sendOtp(req, orderId) {
121
+ if (!entityMap.orders) {
122
+ return json({
123
+ error: "Orders entity not found"
124
+ }, {
125
+ status: 500
126
+ });
127
+ }
128
+ let body = {};
129
+ try {
130
+ body = await req.json();
131
+ } catch {
132
+ }
133
+ const orderRepo = dataSource.getRepository(entityMap.orders);
134
+ const order = await orderRepo.findOne({
135
+ where: {
136
+ id: orderId,
137
+ deleted: false
138
+ },
139
+ relations: [
140
+ "contact"
141
+ ]
142
+ });
143
+ if (!order) {
144
+ return json({
145
+ error: "Order not found"
146
+ }, {
147
+ status: 404
148
+ });
149
+ }
150
+ const o = order;
151
+ if (o.status === "completed") {
152
+ return json({
153
+ error: "Order is already completed"
154
+ }, {
155
+ status: 400
156
+ });
157
+ }
158
+ if (o.status === "cancelled") {
159
+ return json({
160
+ error: "Cannot complete a cancelled order"
161
+ }, {
162
+ status: 400
163
+ });
164
+ }
165
+ const customerEmail = o.contact?.email?.trim();
166
+ const customerPhone = o.contact?.phone?.trim();
167
+ if (!customerEmail && !customerPhone) {
168
+ return json({
169
+ error: "Customer email and phone number are both missing for this order."
170
+ }, {
171
+ status: 400
172
+ });
173
+ }
174
+ const cfg = await getOtpChannelsConfig(dataSource, entityMap);
175
+ const requestedChannels = Array.isArray(body.channels) && body.channels.length > 0 ? body.channels : [
176
+ ...cfg.email ? [
177
+ "email"
178
+ ] : [],
179
+ ...cfg.whatsapp ? [
180
+ "whatsapp"
181
+ ] : [],
182
+ ...cfg.sms ? [
183
+ "sms"
184
+ ] : [],
185
+ ...cfg.push ? [
186
+ "push"
187
+ ] : []
188
+ ];
189
+ const targetChannels = [];
190
+ if (requestedChannels.includes("email") && customerEmail && cfg.email) targetChannels.push("email");
191
+ if (requestedChannels.includes("whatsapp") && customerPhone && cfg.whatsapp) targetChannels.push("whatsapp");
192
+ if (requestedChannels.includes("sms") && customerPhone && cfg.sms) targetChannels.push("sms");
193
+ if (requestedChannels.includes("push") && cfg.push) targetChannels.push("push");
194
+ if (targetChannels.length === 0) {
195
+ if (customerEmail) targetChannels.push("email");
196
+ else if (customerPhone) targetChannels.push("whatsapp");
197
+ }
198
+ const code = chunkWFMVD567_cjs.generateNumericOtp(6);
199
+ const challengeResult = await chunkWFMVD567_cjs.createOtpChallenge(dataSource, entityMap, {
200
+ purpose: "order_completion",
201
+ channel: targetChannels[0] || "email",
202
+ identifier: `order:${orderId}`,
203
+ code
204
+ });
205
+ if (!challengeResult.ok) {
206
+ return json({
207
+ error: challengeResult.error
208
+ }, {
209
+ status: challengeResult.status
210
+ });
211
+ }
212
+ const cms = await getCms();
213
+ const customerName = o.contact?.name || "Valued Customer";
214
+ const channelsSent = [];
215
+ if (targetChannels.includes("email") && customerEmail) {
216
+ try {
217
+ const html = `
218
+ <div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 15px; color: #1f2937; line-height: 1.6; max-width: 600px; margin: 0 auto; padding: 20px; border: 1px solid #e5e7eb; border-radius: 8px;">
219
+ <h2 style="color: #111827; font-size: 20px; font-weight: 600; margin-bottom: 16px;">Order Completion Verification Code</h2>
220
+ <p>Hi ${customerName},</p>
221
+ <p>Your service/delivery representative is ready to mark your Order <strong>#${o.orderNumber}</strong> as completed.</p>
222
+ <p>Please share the following verification code with them to confirm completion:</p>
223
+ <div style="background-color: #f3f4f6; border-radius: 8px; padding: 20px; text-align: center; margin: 24px 0;">
224
+ <span style="font-size: 32px; font-weight: 700; letter-spacing: 8px; color: #111827;">${code}</span>
225
+ </div>
226
+ <p style="color: #6b7280; font-size: 13px;">This code is valid for 10 minutes. If you did not authorize this completion, please contact support immediately.</p>
227
+ </div>
228
+ `;
229
+ await chunkLRD4CGOG_cjs.queueEmail(cms, {
230
+ to: customerEmail,
231
+ subject: `Completion Code ${code} for Order #${o.orderNumber}`,
232
+ html,
233
+ text: `Your completion code for Order #${o.orderNumber} is ${code}. Valid for 10 minutes.`
234
+ });
235
+ channelsSent.push("email");
236
+ } catch (err) {
237
+ console.error("[completion-otp] failed to queue email", err);
238
+ }
239
+ }
240
+ if (targetChannels.includes("whatsapp") && customerPhone) {
241
+ try {
242
+ const sent = await chunkH3IVLIPR_cjs.queueWhatsApp(cms, {
243
+ to: customerPhone,
244
+ body: `Your completion code for Order #${o.orderNumber} is ${code}. Share this with your representative to complete your order. Valid for 10 minutes.`,
245
+ variables: {
246
+ code,
247
+ orderNumber: o.orderNumber,
248
+ customerName
249
+ }
250
+ });
251
+ if (sent) channelsSent.push("whatsapp");
252
+ } catch (err) {
253
+ console.error("[completion-otp] failed to queue WhatsApp", err);
254
+ }
255
+ }
256
+ if (targetChannels.includes("sms") && customerPhone) {
257
+ try {
258
+ await chunkWFMVD567_cjs.queueSms(cms, {
259
+ to: customerPhone,
260
+ body: `Your verification code for Order #${o.orderNumber} is ${code}. Valid for 10 minutes.`,
261
+ otpCode: code,
262
+ variables: {
263
+ code,
264
+ orderNumber: o.orderNumber
265
+ }
266
+ });
267
+ channelsSent.push("sms");
268
+ } catch (err) {
269
+ console.error("[completion-otp] failed to queue SMS", err);
270
+ }
271
+ }
272
+ return json({
273
+ ok: true,
274
+ message: "Verification code sent to customer",
275
+ channelsSent: channelsSent.length > 0 ? channelsSent : targetChannels,
276
+ maskedEmail: maskEmail(customerEmail),
277
+ maskedPhone: maskPhone(customerPhone)
278
+ });
279
+ },
280
+ /** POST /api/orders/:id/completion-otp/verify */
281
+ async verifyOtp(req, orderId) {
282
+ if (!entityMap.orders) {
283
+ return json({
284
+ error: "Orders entity not found"
285
+ }, {
286
+ status: 500
287
+ });
288
+ }
289
+ let body = {};
290
+ try {
291
+ body = await req.json();
292
+ } catch {
293
+ return json({
294
+ error: "Invalid request body"
295
+ }, {
296
+ status: 400
297
+ });
298
+ }
299
+ const code = String(body.code ?? "").trim();
300
+ if (!code || code.length < 4) {
301
+ return json({
302
+ error: "Please enter a valid verification code"
303
+ }, {
304
+ status: 400
305
+ });
306
+ }
307
+ const verifyResult = await chunkWFMVD567_cjs.verifyAndConsumeOtpChallenge(dataSource, entityMap, {
308
+ purpose: "order_completion",
309
+ identifier: `order:${orderId}`,
310
+ code
311
+ });
312
+ if (!verifyResult.ok) {
313
+ return json({
314
+ error: verifyResult.error
315
+ }, {
316
+ status: verifyResult.status
317
+ });
318
+ }
319
+ const orderRepo = dataSource.getRepository(entityMap.orders);
320
+ const order = await orderRepo.findOne({
321
+ where: {
322
+ id: orderId,
323
+ deleted: false
324
+ },
325
+ relations: [
326
+ "contact"
327
+ ]
328
+ });
329
+ if (!order) {
330
+ return json({
331
+ error: "Order not found"
332
+ }, {
333
+ status: 404
334
+ });
335
+ }
336
+ const now = /* @__PURE__ */ new Date();
337
+ order.status = "completed";
338
+ order.completedAt = now;
339
+ order.updatedAt = now;
340
+ await orderRepo.save(order);
341
+ try {
342
+ await chunkLVQSG25Y_cjs.fireOrderNotificationTrigger("order_completed", orderId, {
343
+ dataSource,
344
+ entityMap
345
+ });
346
+ } catch (err) {
347
+ console.warn("[completion-otp] failed to fire order_completed notification trigger", err);
348
+ }
349
+ return json({
350
+ ok: true,
351
+ message: "Order verified and completed successfully",
352
+ order: {
353
+ id: order.id,
354
+ status: "completed",
355
+ completedAt: now
356
+ }
357
+ });
358
+ }
359
+ };
360
+ }
361
+ chunkUSNT2KNT_cjs.__name(createOrderCompletionOtpHandlers, "createOrderCompletionOtpHandlers");
362
+
363
+ exports.createOrderCompletionOtpHandlers = createOrderCompletionOtpHandlers;
@@ -0,0 +1,10 @@
1
+ export { dispatchOrderNotificationDirectly, emitOrderNotificationTrigger, getSettingsGroup, initWhatsappTriggerDispatcher, resendOrderNotification } from './chunk-6LV36PCL.js';
2
+ import './chunk-GWDI752Q.js';
3
+ import './chunk-AYWDQFJZ.js';
4
+ import './chunk-GZGFNVTK.js';
5
+ import './chunk-YW7EF7K7.js';
6
+ import './chunk-HMLVPIJR.js';
7
+ import './chunk-JC6DLWTE.js';
8
+ import './chunk-NMYGQWHV.js';
9
+ import './chunk-CRFV5WJK.js';
10
+ import './chunk-SHUYVCID.js';
@@ -0,0 +1,35 @@
1
+ 'use strict';
2
+
3
+ var chunkTWTISTZB_cjs = require('./chunk-TWTISTZB.cjs');
4
+ require('./chunk-H3IVLIPR.cjs');
5
+ require('./chunk-UEE4PTTB.cjs');
6
+ require('./chunk-ZPAPCGCR.cjs');
7
+ require('./chunk-LRD4CGOG.cjs');
8
+ require('./chunk-AXMP2U43.cjs');
9
+ require('./chunk-UPLVMVRX.cjs');
10
+ require('./chunk-CTIEAHQL.cjs');
11
+ require('./chunk-OOTLNH63.cjs');
12
+ require('./chunk-USNT2KNT.cjs');
13
+
14
+
15
+
16
+ Object.defineProperty(exports, "dispatchOrderNotificationDirectly", {
17
+ enumerable: true,
18
+ get: function () { return chunkTWTISTZB_cjs.dispatchOrderNotificationDirectly; }
19
+ });
20
+ Object.defineProperty(exports, "emitOrderNotificationTrigger", {
21
+ enumerable: true,
22
+ get: function () { return chunkTWTISTZB_cjs.emitOrderNotificationTrigger; }
23
+ });
24
+ Object.defineProperty(exports, "getSettingsGroup", {
25
+ enumerable: true,
26
+ get: function () { return chunkTWTISTZB_cjs.getSettingsGroup; }
27
+ });
28
+ Object.defineProperty(exports, "initWhatsappTriggerDispatcher", {
29
+ enumerable: true,
30
+ get: function () { return chunkTWTISTZB_cjs.initWhatsappTriggerDispatcher; }
31
+ });
32
+ Object.defineProperty(exports, "resendOrderNotification", {
33
+ enumerable: true,
34
+ get: function () { return chunkTWTISTZB_cjs.resendOrderNotification; }
35
+ });
@@ -0,0 +1,47 @@
1
+ import { __name } from './chunk-SHUYVCID.js';
2
+
3
+ // src/api/sms-notification-templates-handlers.ts
4
+ function json(data, init) {
5
+ return new Response(JSON.stringify(data), {
6
+ status: init?.status ?? 200,
7
+ headers: {
8
+ "Content-Type": "application/json",
9
+ ...init?.headers || {}
10
+ }
11
+ });
12
+ }
13
+ __name(json, "json");
14
+ function createSmsNotificationTemplatesHandlers(dataSource, entityMap) {
15
+ return {
16
+ async GET(req) {
17
+ if (!entityMap.sms_notification_templates) {
18
+ return json({
19
+ data: []
20
+ });
21
+ }
22
+ try {
23
+ const repo = dataSource.getRepository(entityMap.sms_notification_templates);
24
+ const templates = await repo.find({
25
+ where: {
26
+ deleted: false
27
+ },
28
+ order: {
29
+ id: "ASC"
30
+ }
31
+ });
32
+ return json({
33
+ data: templates
34
+ });
35
+ } catch (err) {
36
+ return json({
37
+ error: err instanceof Error ? err.message : "Database error"
38
+ }, {
39
+ status: 500
40
+ });
41
+ }
42
+ }
43
+ };
44
+ }
45
+ __name(createSmsNotificationTemplatesHandlers, "createSmsNotificationTemplatesHandlers");
46
+
47
+ export { createSmsNotificationTemplatesHandlers };
@@ -0,0 +1,49 @@
1
+ 'use strict';
2
+
3
+ var chunkUSNT2KNT_cjs = require('./chunk-USNT2KNT.cjs');
4
+
5
+ // src/api/sms-notification-templates-handlers.ts
6
+ function json(data, init) {
7
+ return new Response(JSON.stringify(data), {
8
+ status: init?.status ?? 200,
9
+ headers: {
10
+ "Content-Type": "application/json",
11
+ ...init?.headers || {}
12
+ }
13
+ });
14
+ }
15
+ chunkUSNT2KNT_cjs.__name(json, "json");
16
+ function createSmsNotificationTemplatesHandlers(dataSource, entityMap) {
17
+ return {
18
+ async GET(req) {
19
+ if (!entityMap.sms_notification_templates) {
20
+ return json({
21
+ data: []
22
+ });
23
+ }
24
+ try {
25
+ const repo = dataSource.getRepository(entityMap.sms_notification_templates);
26
+ const templates = await repo.find({
27
+ where: {
28
+ deleted: false
29
+ },
30
+ order: {
31
+ id: "ASC"
32
+ }
33
+ });
34
+ return json({
35
+ data: templates
36
+ });
37
+ } catch (err) {
38
+ return json({
39
+ error: err instanceof Error ? err.message : "Database error"
40
+ }, {
41
+ status: 500
42
+ });
43
+ }
44
+ }
45
+ };
46
+ }
47
+ chunkUSNT2KNT_cjs.__name(createSmsNotificationTemplatesHandlers, "createSmsNotificationTemplatesHandlers");
48
+
49
+ exports.createSmsNotificationTemplatesHandlers = createSmsNotificationTemplatesHandlers;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infuro/cms-core",
3
- "version": "1.0.61",
3
+ "version": "1.0.62",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -1,24 +0,0 @@
1
- 'use strict';
2
-
3
- var chunkYSYX4GUD_cjs = require('./chunk-YSYX4GUD.cjs');
4
- require('./chunk-77I3KS7V.cjs');
5
- require('./chunk-V25RDUOU.cjs');
6
- require('./chunk-BXYZDMTZ.cjs');
7
- require('./chunk-UPLVMVRX.cjs');
8
- require('./chunk-OOTLNH63.cjs');
9
- require('./chunk-USNT2KNT.cjs');
10
-
11
-
12
-
13
- Object.defineProperty(exports, "getSettingsGroup", {
14
- enumerable: true,
15
- get: function () { return chunkYSYX4GUD_cjs.getSettingsGroup; }
16
- });
17
- Object.defineProperty(exports, "initWhatsappTriggerDispatcher", {
18
- enumerable: true,
19
- get: function () { return chunkYSYX4GUD_cjs.initWhatsappTriggerDispatcher; }
20
- });
21
- Object.defineProperty(exports, "resendOrderNotification", {
22
- enumerable: true,
23
- get: function () { return chunkYSYX4GUD_cjs.resendOrderNotification; }
24
- });
@@ -1,7 +0,0 @@
1
- export { getSettingsGroup, initWhatsappTriggerDispatcher, resendOrderNotification } from './chunk-URN7GS23.js';
2
- import './chunk-T3HPSF7K.js';
3
- import './chunk-L3525VXI.js';
4
- import './chunk-2KUCQVAQ.js';
5
- import './chunk-JC6DLWTE.js';
6
- import './chunk-CRFV5WJK.js';
7
- import './chunk-SHUYVCID.js';