@access-dlsu/leapify 0.260605.1 → 0.260605.2
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.cjs +3 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -7
- package/dist/index.js.map +1 -1
- package/dist/worker.js +3 -4
- package/dist/worker.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1235,6 +1235,7 @@ classesRoute.get(
|
|
|
1235
1235
|
themeId: true,
|
|
1236
1236
|
organizationId: true,
|
|
1237
1237
|
title: true,
|
|
1238
|
+
description: true,
|
|
1238
1239
|
venue: true,
|
|
1239
1240
|
dateTime: true,
|
|
1240
1241
|
price: true,
|
|
@@ -1246,9 +1247,7 @@ classesRoute.get(
|
|
|
1246
1247
|
isSpotlight: true,
|
|
1247
1248
|
maxSlots: true,
|
|
1248
1249
|
registeredSlots: true,
|
|
1249
|
-
gformsUrl: true
|
|
1250
|
-
gformsEditorUrl: true,
|
|
1251
|
-
publishedAt: true
|
|
1250
|
+
gformsUrl: true
|
|
1252
1251
|
}
|
|
1253
1252
|
}),
|
|
1254
1253
|
EVENTS_LIST_TTL
|
|
@@ -2463,7 +2462,7 @@ function createApp(options = {}) {
|
|
|
2463
2462
|
documentation: {
|
|
2464
2463
|
info: {
|
|
2465
2464
|
title: "Leapify API",
|
|
2466
|
-
version: "0.260605.
|
|
2465
|
+
version: "0.260605.2" ,
|
|
2467
2466
|
description: "DLSU CSO LEAP backend API"
|
|
2468
2467
|
},
|
|
2469
2468
|
openapi: "3.1.0"
|
|
@@ -3113,7 +3112,7 @@ function defaultGetRuntimeConfig(env) {
|
|
|
3113
3112
|
};
|
|
3114
3113
|
}
|
|
3115
3114
|
function injectConfig(html, config) {
|
|
3116
|
-
const configScript = `<script>window.__CONFIG__=${JSON.stringify(config)}
|
|
3115
|
+
const configScript = `<script>window.__CONFIG__=${JSON.stringify(config)};</script>`;
|
|
3117
3116
|
return html.replace("</head>", `${configScript}</head>`);
|
|
3118
3117
|
}
|
|
3119
3118
|
function createWorkerHandler(options) {
|
|
@@ -3235,10 +3234,10 @@ function getRuntimeConfig(env) {
|
|
|
3235
3234
|
};
|
|
3236
3235
|
}
|
|
3237
3236
|
function injectConfig2(html, config) {
|
|
3238
|
-
const configScript = `<script>window.__CONFIG__=${JSON.stringify(config)}
|
|
3237
|
+
const configScript = `<script>window.__CONFIG__=${JSON.stringify(config)};</script>`;
|
|
3239
3238
|
return html.replace("</head>", `${configScript}</head>`);
|
|
3240
3239
|
}
|
|
3241
3240
|
|
|
3242
3241
|
export { authAccount, authSession, authUser, authVerification, bookmarks, bookmarksRelations, createDb, createLeapify, createQueueHandler, createWorkerHandler, ensureDatabase, events, eventsRelations, faqs, getRuntimeConfig, injectConfig2 as injectConfig, organizations, organizationsRelations, siteConfig, themes, themesRelations, users };
|
|
3243
3242
|
//# sourceMappingURL=index.js.map
|
|
3244
|
-
//# sourceMappingURL=index.js.
|
|
3243
|
+
//# sourceMappingURL=index.js.mapap
|