@runnerpro/backend 1.1.10 → 1.1.12
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/lib/cjs/chat/api/conversation.js +6 -6
- package/lib/cjs/chat/api/listConversations.js +1 -1
- package/lib/cjs/chat/exposed/conversation.js +1 -1
- package/lib/cjs/fetch/fetchIA.js +7 -7
- package/lib/cjs/googleSheet/index.js +25 -3
- package/lib/cjs/index.js +2 -1
- package/lib/cjs/sendMail/index.js +1 -1
- package/lib/cjs/sendNotification/index.js +1 -1
- package/lib/cjs/types/chat/api/conversation.d.ts.map +1 -1
- package/lib/cjs/types/googleSheet/index.d.ts +8 -1
- package/lib/cjs/types/googleSheet/index.d.ts.map +1 -1
- package/lib/cjs/types/index.d.ts +2 -2
- package/lib/cjs/types/index.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -44,11 +44,11 @@ const conversationRoute = (_a) => {
|
|
|
44
44
|
},
|
|
45
45
|
});
|
|
46
46
|
router.get('/conversation', (req, res, next) => getConversation(req, res, params).catch((error) => (0, index_1.err)(req, res, error, next)));
|
|
47
|
-
router.get('/conversation/suggestion', (req, res, next) => getConversationSuggestion(req, res
|
|
47
|
+
router.get('/conversation/suggestion', (req, res, next) => getConversationSuggestion(req, res).catch((error) => (0, index_1.err)(req, res, error, next)));
|
|
48
48
|
router.get('/conversation/image/:id', (req, res, next) => getConversationImage(req, res, params).catch((error) => (0, index_1.err)(req, res, error, next)));
|
|
49
49
|
router.get('/conversation/file/:id', (req, res, next) => getConversationFile(req, res, params).catch((error) => (0, index_1.err)(req, res, error, next)));
|
|
50
50
|
router.post('/conversation/send', (req, res, next) => sendMessage(req, res, params).catch((error) => (0, index_1.err)(req, res, error, next)));
|
|
51
|
-
router.post('/conversation/send-file', uploadFile.single('file'), (req, res, next) => sendFile(req, res, params
|
|
51
|
+
router.post('/conversation/send-file', uploadFile.single('file'), (req, res, next) => sendFile(req, res, params).catch((error) => (0, index_1.err)(req, res, error, next)));
|
|
52
52
|
router.post('/conversation/read', (req, res, next) => readMessage(req, res, params).catch((error) => (0, index_1.err)(req, res, error, next)));
|
|
53
53
|
router.post('/conversation/read-feelings', (req, res, next) => readFeelings(req, res, params).catch((error) => (0, index_1.err)(req, res, error, next)));
|
|
54
54
|
};
|
|
@@ -127,7 +127,7 @@ const getChatFile = ({ query, bucket, id, isClient, userid }) => __awaiter(void
|
|
|
127
127
|
return null;
|
|
128
128
|
}
|
|
129
129
|
});
|
|
130
|
-
const getConversationSuggestion = (req, res
|
|
130
|
+
const getConversationSuggestion = (req, res) => __awaiter(void 0, void 0, void 0, function* () {
|
|
131
131
|
let result;
|
|
132
132
|
try {
|
|
133
133
|
result = yield axios_1.default
|
|
@@ -141,7 +141,7 @@ const getConversationSuggestion = (req, res, next) => __awaiter(void 0, void 0,
|
|
|
141
141
|
.then((response) => response.data);
|
|
142
142
|
}
|
|
143
143
|
catch (e) {
|
|
144
|
-
(0, index_1.err)(null, null, e,
|
|
144
|
+
(0, index_1.err)(null, null, e, null);
|
|
145
145
|
result = { error: 'Ha habido un error con el servidor' };
|
|
146
146
|
}
|
|
147
147
|
finally {
|
|
@@ -196,7 +196,7 @@ const getPreferredLanguageForChat = ({ text, idCliente, isClient, query }) => __
|
|
|
196
196
|
preferredLanguage: preferredLanguage,
|
|
197
197
|
};
|
|
198
198
|
});
|
|
199
|
-
const sendFile = (req, res, { sendNotification, firebaseMessaging, query, isClient, bucket }
|
|
199
|
+
const sendFile = (req, res, { sendNotification, firebaseMessaging, query, isClient, bucket }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
200
200
|
const { idCliente, type, duration } = req.body;
|
|
201
201
|
const { userid } = req.session;
|
|
202
202
|
const [{ id: idFile }] = yield query('INSERT INTO [CHAT MESSAGE] ([ID CLIENTE], [ID SENDER], [TEXT], [MIMETYPE], [DURATION], [TYPE]) VALUES (?, ?, ?, ?, ?, ?) RETURNING [ID]', [isClient ? userid : idCliente, userid, req.file.originalname, req.file.mimetype, duration || null, type || 2]);
|
|
@@ -211,7 +211,7 @@ const sendFile = (req, res, { sendNotification, firebaseMessaging, query, isClie
|
|
|
211
211
|
files.push({ data: fileDataOriented, id: `${idFile}-original` });
|
|
212
212
|
}
|
|
213
213
|
catch (error) {
|
|
214
|
-
(0, index_1.err)(null, null, error,
|
|
214
|
+
(0, index_1.err)(null, null, error, null);
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
else {
|
|
@@ -23,7 +23,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
23
23
|
exports.listConversationsRoute = void 0;
|
|
24
24
|
const listConversationsRoute = (_a) => {
|
|
25
25
|
var { router, err } = _a, params = __rest(_a, ["router", "err"]);
|
|
26
|
-
router.get('/list', (req, res
|
|
26
|
+
router.get('/list', (req, res) => getList(req, res, params).catch((error) => err(req, res, error)));
|
|
27
27
|
};
|
|
28
28
|
exports.listConversationsRoute = listConversationsRoute;
|
|
29
29
|
const getList = (req, res, { query, isClient }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
@@ -24,7 +24,7 @@ exports.conversationRoute = void 0;
|
|
|
24
24
|
const getRoom_1 = require("../utils/getRoom");
|
|
25
25
|
const conversationRoute = (_a) => {
|
|
26
26
|
var { router, err } = _a, params = __rest(_a, ["router", "err"]);
|
|
27
|
-
router.post('/conversation/socket', (req, res
|
|
27
|
+
router.post('/conversation/socket', (req, res) => socketConversation(req, res, params).catch((error) => err(req, res, error)));
|
|
28
28
|
};
|
|
29
29
|
exports.conversationRoute = conversationRoute;
|
|
30
30
|
const socketConversation = (req, res, { isClient }) => __awaiter(void 0, void 0, void 0, function* () {
|
package/lib/cjs/fetch/fetchIA.js
CHANGED
|
@@ -24,7 +24,7 @@ const fetchIA = {
|
|
|
24
24
|
Authorization: `Bearer ${process.env.IA_ACCESS_TOKEN}`,
|
|
25
25
|
} }, options === null || options === void 0 ? void 0 : options.extra))
|
|
26
26
|
.then(({ data }) => data)
|
|
27
|
-
.catch((error) => catchAxios(error, !!(options === null || options === void 0 ? void 0 : options.bypassStatus)
|
|
27
|
+
.catch((error) => catchAxios(error, !!(options === null || options === void 0 ? void 0 : options.bypassStatus)));
|
|
28
28
|
}),
|
|
29
29
|
post: (url, body, options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
30
30
|
return axios_1.default
|
|
@@ -36,7 +36,7 @@ const fetchIA = {
|
|
|
36
36
|
},
|
|
37
37
|
})
|
|
38
38
|
.then(({ data }) => data)
|
|
39
|
-
.catch((error) => catchAxios(error, !!(options === null || options === void 0 ? void 0 : options.bypassStatus)
|
|
39
|
+
.catch((error) => catchAxios(error, !!(options === null || options === void 0 ? void 0 : options.bypassStatus)));
|
|
40
40
|
}),
|
|
41
41
|
put: (url, body, options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
42
42
|
return axios_1.default
|
|
@@ -48,7 +48,7 @@ const fetchIA = {
|
|
|
48
48
|
},
|
|
49
49
|
})
|
|
50
50
|
.then(({ data }) => data)
|
|
51
|
-
.catch((error) => catchAxios(error, !!(options === null || options === void 0 ? void 0 : options.bypassStatus)
|
|
51
|
+
.catch((error) => catchAxios(error, !!(options === null || options === void 0 ? void 0 : options.bypassStatus)));
|
|
52
52
|
}),
|
|
53
53
|
delete: (url, body, options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
54
54
|
return axios_1.default
|
|
@@ -61,13 +61,13 @@ const fetchIA = {
|
|
|
61
61
|
},
|
|
62
62
|
})
|
|
63
63
|
.then(({ data }) => data)
|
|
64
|
-
.catch((error) => catchAxios(error, !!(options === null || options === void 0 ? void 0 : options.bypassStatus)
|
|
64
|
+
.catch((error) => catchAxios(error, !!(options === null || options === void 0 ? void 0 : options.bypassStatus)));
|
|
65
65
|
}),
|
|
66
66
|
};
|
|
67
67
|
exports.fetchIA = fetchIA;
|
|
68
|
-
function catchAxios(error, bypassStatus
|
|
69
|
-
var _a
|
|
68
|
+
function catchAxios(error, bypassStatus) {
|
|
69
|
+
var _a;
|
|
70
70
|
if (bypassStatus)
|
|
71
71
|
return error.response;
|
|
72
|
-
(0, index_1.err)(
|
|
72
|
+
(0, index_1.err)(null, null, (_a = error.response) === null || _a === void 0 ? void 0 : _a.status, null);
|
|
73
73
|
}
|
|
@@ -12,7 +12,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
12
12
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
13
|
};
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.getLetter = exports.getNumberByLetter = exports.writeSheet = exports.findCellByValue = exports.readSheet = void 0;
|
|
15
|
+
exports.getLetter = exports.getNumberByLetter = exports.appendSheet = exports.writeSheet = exports.findCellByValue = exports.readSheet = void 0;
|
|
16
16
|
const path_1 = __importDefault(require("path"));
|
|
17
17
|
const googleapis_1 = require("googleapis");
|
|
18
18
|
const fs_1 = __importDefault(require("fs"));
|
|
@@ -24,6 +24,7 @@ const googleSheeIds = {
|
|
|
24
24
|
INFLUENCER: '1Uv5Prbjo4h0X74WzaGryKsEbnRX_QM8z0DGYZnvSJ-4',
|
|
25
25
|
NORTH_STAR: '1RkLAXb8iH-QKQ1MAeUZLpBN2lWvab4GMZkKbG-DNv64',
|
|
26
26
|
INFLUENCER_BUTTON: '1wSxtowC1yUUgkYDKhY_Wci6nZeYz13PiZuA7H_1tRfs',
|
|
27
|
+
CRM_LEADS: '1q_M8JyYZjAtNhTay-OoQfjePWM9biNNJqw4bCetdXgg',
|
|
27
28
|
};
|
|
28
29
|
// authenticate the service account
|
|
29
30
|
const googleAuth = new googleapis_1.google.auth.JWT(credentials.client_email, null, credentials.private_key.replace(/\\n/g, '\n'), 'https://www.googleapis.com/auth/spreadsheets');
|
|
@@ -43,7 +44,7 @@ function readSheet({ sheetInstance, sheetName, sheetPage, cellPositionStart, cel
|
|
|
43
44
|
return infoObjectFromSheet.data.values;
|
|
44
45
|
}
|
|
45
46
|
catch (error) {
|
|
46
|
-
(0, err_1.err)(
|
|
47
|
+
(0, err_1.err)(null, null, error, null);
|
|
47
48
|
}
|
|
48
49
|
});
|
|
49
50
|
}
|
|
@@ -74,6 +75,7 @@ const findCellByValue = ({ sheetName, sheetPage, value, positionX, positionXStar
|
|
|
74
75
|
array = readRow[0];
|
|
75
76
|
}
|
|
76
77
|
let index;
|
|
78
|
+
// @ts-ignore
|
|
77
79
|
if (valueType === 'CONTAIN')
|
|
78
80
|
index = array.findIndex((cell) => cell.includes(value));
|
|
79
81
|
// @ts-ignore
|
|
@@ -129,7 +131,27 @@ const writeSheet = ({ sheetInstance, sheetName, sheetPage, cellValue, cellPositi
|
|
|
129
131
|
});
|
|
130
132
|
}
|
|
131
133
|
catch (error) {
|
|
132
|
-
(0, err_1.err)(
|
|
134
|
+
(0, err_1.err)(null, null, error, null);
|
|
133
135
|
}
|
|
134
136
|
});
|
|
135
137
|
exports.writeSheet = writeSheet;
|
|
138
|
+
const appendSheet = ({ sheetInstance, sheetName, sheetPage, cellValues, cellPositionAppend }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
139
|
+
try {
|
|
140
|
+
if (!sheetInstance)
|
|
141
|
+
sheetInstance = yield getSheetInstance();
|
|
142
|
+
yield sheetInstance.spreadsheets.values.append({
|
|
143
|
+
auth: googleAuth,
|
|
144
|
+
spreadsheetId: googleSheeIds[sheetName],
|
|
145
|
+
range: `${sheetPage}!${cellPositionAppend}`,
|
|
146
|
+
valueInputOption: 'RAW',
|
|
147
|
+
insertDataOption: 'INSERT_ROWS',
|
|
148
|
+
resource: {
|
|
149
|
+
values: cellValues,
|
|
150
|
+
},
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
catch (error) {
|
|
154
|
+
(0, err_1.err)(null, null, error, null);
|
|
155
|
+
}
|
|
156
|
+
});
|
|
157
|
+
exports.appendSheet = appendSheet;
|
package/lib/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getLetter = exports.getNumberByLetter = exports.writeSheet = exports.findCellByValue = exports.readSheet = exports.NOTION_DATABASES_ID = exports.notionEditPage = exports.notionAddPage = exports.notionGetDatabase = exports.notionGetUsers = exports.getCountNotificaciones = exports.chatExposed = exports.chatApi = exports.chat = exports.getExerciseTranslatedDescription = exports.useTranslation = exports.LANGUAGES = exports.translate = exports.fetchIA = exports.err = exports.sendMail = exports.batchQuery = exports.query = exports.sleep = exports.sendNotification = void 0;
|
|
3
|
+
exports.getLetter = exports.getNumberByLetter = exports.appendSheet = exports.writeSheet = exports.findCellByValue = exports.readSheet = exports.NOTION_DATABASES_ID = exports.notionEditPage = exports.notionAddPage = exports.notionGetDatabase = exports.notionGetUsers = exports.getCountNotificaciones = exports.chatExposed = exports.chatApi = exports.chat = exports.getExerciseTranslatedDescription = exports.useTranslation = exports.LANGUAGES = exports.translate = exports.fetchIA = exports.err = exports.sendMail = exports.batchQuery = exports.query = exports.sleep = exports.sendNotification = void 0;
|
|
4
4
|
const sendNotification_1 = require("./sendNotification");
|
|
5
5
|
Object.defineProperty(exports, "sendNotification", { enumerable: true, get: function () { return sendNotification_1.sendNotification; } });
|
|
6
6
|
const sleep_1 = require("./sleep");
|
|
@@ -34,5 +34,6 @@ const googleSheet_1 = require("./googleSheet");
|
|
|
34
34
|
Object.defineProperty(exports, "readSheet", { enumerable: true, get: function () { return googleSheet_1.readSheet; } });
|
|
35
35
|
Object.defineProperty(exports, "findCellByValue", { enumerable: true, get: function () { return googleSheet_1.findCellByValue; } });
|
|
36
36
|
Object.defineProperty(exports, "writeSheet", { enumerable: true, get: function () { return googleSheet_1.writeSheet; } });
|
|
37
|
+
Object.defineProperty(exports, "appendSheet", { enumerable: true, get: function () { return googleSheet_1.appendSheet; } });
|
|
37
38
|
Object.defineProperty(exports, "getNumberByLetter", { enumerable: true, get: function () { return googleSheet_1.getNumberByLetter; } });
|
|
38
39
|
Object.defineProperty(exports, "getLetter", { enumerable: true, get: function () { return googleSheet_1.getLetter; } });
|
|
@@ -98,7 +98,7 @@ function getBodyHTML(title, body, link) {
|
|
|
98
98
|
<table role="presentation" style="width:100%;border-collapse:collapse;border:0;border-spacing:0;background:#f0f0f0;">
|
|
99
99
|
<tr>
|
|
100
100
|
<td align="center" style="padding:0;">
|
|
101
|
-
<a href="${
|
|
101
|
+
<a href="${process.env.FRONTEND_URL}${link.url}" class="button" style="color:white">${link.text}</a>
|
|
102
102
|
</td>
|
|
103
103
|
</tr>
|
|
104
104
|
</table>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation.d.ts","sourceRoot":"","sources":["../../../../../src/chat/api/conversation.ts"],"names":[],"mappings":"AAWA,QAAA,MAAM,iBAAiB,0BAA2B,GAAG,
|
|
1
|
+
{"version":3,"file":"conversation.d.ts","sourceRoot":"","sources":["../../../../../src/chat/api/conversation.ts"],"names":[],"mappings":"AAWA,QAAA,MAAM,iBAAiB,0BAA2B,GAAG,SAmBpD,CAAC;AAmQF,OAAO,EAAE,iBAAiB,EAAE,CAAC"}
|
|
@@ -24,5 +24,12 @@ declare const writeSheet: ({ sheetInstance, sheetName, sheetPage, cellValue, cel
|
|
|
24
24
|
cellValue: any;
|
|
25
25
|
cellPosition: any;
|
|
26
26
|
}) => Promise<void>;
|
|
27
|
-
|
|
27
|
+
declare const appendSheet: ({ sheetInstance, sheetName, sheetPage, cellValues, cellPositionAppend }: {
|
|
28
|
+
sheetInstance: any;
|
|
29
|
+
sheetName: any;
|
|
30
|
+
sheetPage: any;
|
|
31
|
+
cellValues: any;
|
|
32
|
+
cellPositionAppend: any;
|
|
33
|
+
}) => Promise<void>;
|
|
34
|
+
export { readSheet, findCellByValue, writeSheet, appendSheet, getNumberByLetter, getLetter };
|
|
28
35
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/googleSheet/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/googleSheet/index.ts"],"names":[],"mappings":"AA4BA,iBAAe,SAAS,CAAC,EAAE,aAAa,EAAE,SAAS,EAAE,SAAS,EAAE,iBAAiB,EAAE,eAAe,EAAE;;;;;;CAAA,gBAcnG;AAED,QAAA,MAAM,eAAe;;;;;;;;;0BAiCpB,CAAC;AAGF,iBAAS,SAAS,CAAC,MAAM,KAAA,UAaxB;AAED,iBAAS,iBAAiB,CAAC,MAAM,KAAA,UAOhC;AAED,QAAA,MAAM,UAAU;;;;;;mBAgBf,CAAC;AAEF,QAAA,MAAM,WAAW;;;;;;mBAiBhB,CAAC;AAEF,OAAO,EAAE,SAAS,EAAE,eAAe,EAAE,UAAU,EAAE,WAAW,EAAE,iBAAiB,EAAE,SAAS,EAAE,CAAC"}
|
package/lib/cjs/types/index.d.ts
CHANGED
|
@@ -7,6 +7,6 @@ import { fetchIA } from './fetch/fetchIA';
|
|
|
7
7
|
import { translate, LANGUAGES, useTranslation, getExerciseTranslatedDescription } from './translation';
|
|
8
8
|
import { chat, chatApi, chatExposed, getCountNotificaciones } from './chat';
|
|
9
9
|
import { notionGetUsers, notionGetDatabase, notionAddPage, notionEditPage, NOTION_DATABASES_ID } from './notion';
|
|
10
|
-
import { readSheet, findCellByValue, writeSheet, getNumberByLetter, getLetter } from './googleSheet';
|
|
11
|
-
export { sendNotification, sleep, query, batchQuery, sendMail, err, fetchIA, translate, LANGUAGES, useTranslation, getExerciseTranslatedDescription, chat, chatApi, chatExposed, getCountNotificaciones, notionGetUsers, notionGetDatabase, notionAddPage, notionEditPage, NOTION_DATABASES_ID, readSheet, findCellByValue, writeSheet, getNumberByLetter, getLetter, };
|
|
10
|
+
import { readSheet, findCellByValue, writeSheet, appendSheet, getNumberByLetter, getLetter } from './googleSheet';
|
|
11
|
+
export { sendNotification, sleep, query, batchQuery, sendMail, err, fetchIA, translate, LANGUAGES, useTranslation, getExerciseTranslatedDescription, chat, chatApi, chatExposed, getCountNotificaciones, notionGetUsers, notionGetDatabase, notionAddPage, notionEditPage, NOTION_DATABASES_ID, readSheet, findCellByValue, writeSheet, appendSheet, getNumberByLetter, getLetter, };
|
|
12
12
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,cAAc,EAAE,gCAAgC,EAAE,MAAM,eAAe,CAAC;AACvG,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,WAAW,EAAE,sBAAsB,EAAE,MAAM,QAAQ,CAAC;AAC5E,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACjH,OAAO,EAAE,SAAS,EAAE,eAAe,EAAE,UAAU,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,cAAc,EAAE,gCAAgC,EAAE,MAAM,eAAe,CAAC;AACvG,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,WAAW,EAAE,sBAAsB,EAAE,MAAM,QAAQ,CAAC;AAC5E,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACjH,OAAO,EAAE,SAAS,EAAE,eAAe,EAAE,UAAU,EAAE,WAAW,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAElH,OAAO,EACL,gBAAgB,EAChB,KAAK,EACL,KAAK,EACL,UAAU,EACV,QAAQ,EACR,GAAG,EACH,OAAO,EACP,SAAS,EACT,SAAS,EACT,cAAc,EACd,gCAAgC,EAChC,IAAI,EACJ,OAAO,EACP,WAAW,EACX,sBAAsB,EACtB,cAAc,EACd,iBAAiB,EACjB,aAAa,EACb,cAAc,EACd,mBAAmB,EACnB,SAAS,EACT,eAAe,EACf,UAAU,EACV,WAAW,EACX,iBAAiB,EACjB,SAAS,GACV,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runnerpro/backend",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.12",
|
|
4
4
|
"description": "A collection of common backend functions",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./lib/cjs/index.js"
|
|
@@ -68,4 +68,4 @@
|
|
|
68
68
|
"multer": "^1.4.5-lts.1",
|
|
69
69
|
"socket.io": "^4.7.2"
|
|
70
70
|
}
|
|
71
|
-
}
|
|
71
|
+
}
|