@hywax/cms 0.0.13 → 0.0.14

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/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hywax/cms",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "configKey": "cms",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.1",
package/dist/module.mjs CHANGED
@@ -6,7 +6,7 @@ import { snakeCase, kebabCase } from 'scule';
6
6
  import { readFile, writeFile } from 'node:fs/promises';
7
7
 
8
8
  const name = "@hywax/cms";
9
- const version = "0.0.13";
9
+ const version = "0.0.14";
10
10
 
11
11
  function createContext(options, nuxt) {
12
12
  const { resolve } = createResolver(import.meta.url);
@@ -48,7 +48,7 @@ function transformHttpCodes(httpCodes) {
48
48
  }
49
49
 
50
50
  function prepareAutoImports({ resolve, options, nuxt }) {
51
- const httpCodesPath = resolve(nuxt.options.buildDir, "http-codes");
51
+ const httpCodesPath = resolve(nuxt.options.buildDir, "cms/http-codes");
52
52
  const httpCodesImports = transformHttpCodes(options.httpCodes).map(({ code }) => ({ name: code, from: httpCodesPath }));
53
53
  const sharedUtils = [
54
54
  "avatar",
@@ -88,7 +88,7 @@ function prepareAutoImports({ resolve, options, nuxt }) {
88
88
  resolve("./runtime/server/utils")
89
89
  ]);
90
90
  nuxt.options.nitro.alias ||= {};
91
- nuxt.options.nitro.alias["#http-codes"] = httpCodesPath;
91
+ nuxt.options.nitro.alias["#cms/http-codes"] = httpCodesPath;
92
92
  nuxt.options.alias["#cms"] = resolve("./runtime");
93
93
  nuxt.options.appConfig.cms = defu(nuxt.options.appConfig.cms || {}, defaultCMSConfig);
94
94
  }
@@ -192,12 +192,12 @@ function prepareServerRoutes({ resolve }) {
192
192
  addServerHandler({
193
193
  route: "/api/_uplora",
194
194
  method: "post",
195
- handler: resolve("./runtime/server/api/uplora/index.post.ts")
195
+ handler: resolve("./runtime/server/api/uplora/index.post")
196
196
  });
197
197
  addServerHandler({
198
198
  route: "/api/_uplora/:id",
199
199
  method: "delete",
200
- handler: resolve("./runtime/server/api/uplora/[id].delete.ts")
200
+ handler: resolve("./runtime/server/api/uplora/[id].delete")
201
201
  });
202
202
  }
203
203
 
@@ -1,5 +1,5 @@
1
1
  import { Buffer } from "node:buffer";
2
- import { HTTP_CODE_BAD_REQUEST } from "#http-codes";
2
+ import { HTTP_CODE_BAD_REQUEST } from "#cms/http-codes";
3
3
  import { useRuntimeConfig } from "#imports";
4
4
  import { isImageMimeType } from "@uplora/formats";
5
5
  import { z } from "zod";
@@ -1,4 +1,4 @@
1
- import { HTTP_CODE_BAD_REQUEST, HTTP_CODE_INTERNAL_SERVER_ERROR, HTTP_CODE_REQUEST_TIMEOUT, HTTP_CODE_UNAUTHORIZED } from "#http-codes";
1
+ import { HTTP_CODE_BAD_REQUEST, HTTP_CODE_INTERNAL_SERVER_ERROR, HTTP_CODE_REQUEST_TIMEOUT, HTTP_CODE_UNAUTHORIZED } from "#cms/http-codes";
2
2
  import { consola } from "consola";
3
3
  import { defu } from "defu";
4
4
  import { createError, H3Error } from "h3";
@@ -1,4 +1,4 @@
1
- import { HTTP_CODE_BAD_REQUEST } from "#http-codes";
1
+ import { HTTP_CODE_BAD_REQUEST } from "#cms/http-codes";
2
2
  import { readMultipartFormData } from "h3";
3
3
  import { InternalHttpError } from "../errors/InternalHttpError.js";
4
4
  export function getValidatedSort(query, availableColumns) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hywax/cms",
3
3
  "type": "module",
4
- "version": "0.0.13",
4
+ "version": "0.0.14",
5
5
  "description": "Hywax CMS. ⚠️ This package is intended for internal use only.",
6
6
  "repository": {
7
7
  "type": "git",