@axium/server 0.11.3 → 0.11.5

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/plugins.d.ts CHANGED
@@ -12,7 +12,7 @@ export declare const Plugin: z.ZodObject<{
12
12
  description: z.ZodOptional<z.ZodString>;
13
13
  routes: z.ZodOptional<z.ZodString>;
14
14
  statusText: z.ZodCustom<z.core.$InferInnerFunctionTypeAsync<z.core.$ZodTuple<[], null>, z.ZodString>, z.core.$InferInnerFunctionTypeAsync<z.core.$ZodTuple<[], null>, z.ZodString>>;
15
- hooks: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodLiteral<"remove" | "db_init" | "db_wipe" | "clean">, z.ZodNever]>, z.ZodCustom<(...args: any[]) => any, (...args: any[]) => any>>>;
15
+ hooks: z.ZodOptional<z.ZodRecord<z.ZodLiteral<"remove" | "db_init" | "db_wipe" | "clean"> & z.core.$partial, z.ZodCustom<(...args: any[]) => any, (...args: any[]) => any>>>;
16
16
  }, z.core.$loose>;
17
17
  declare const kSpecifier: unique symbol;
18
18
  export type Plugin = z.infer<typeof Plugin>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axium/server",
3
- "version": "0.11.3",
3
+ "version": "0.11.5",
4
4
  "author": "James Prevett <axium@jamespre.dev> (https://jamespre.dev)",
5
5
  "funding": {
6
6
  "type": "individual",
@@ -44,14 +44,14 @@
44
44
  "@axium/client": ">=0.1.0",
45
45
  "@axium/core": ">=0.4.0",
46
46
  "utilium": "^2.3.8",
47
- "zod": "^3.25.61"
47
+ "zod": "^3.25.76"
48
48
  },
49
49
  "dependencies": {
50
50
  "@axium/server": "file:.",
51
51
  "@simplewebauthn/server": "^13.1.1",
52
52
  "@sveltejs/kit": "^2.20.2",
53
53
  "@types/pg": "^8.11.11",
54
- "commander": "^13.1.0",
54
+ "commander": "^14.0.0",
55
55
  "cookie": "^1.0.2",
56
56
  "kysely": "^0.28.0",
57
57
  "logzen": "^0.7.0",
@@ -0,0 +1,7 @@
1
+ export { default as ClipboardCopy } from './ClipboardCopy.svelte';
2
+ export { default as Dialog } from './Dialog.svelte';
3
+ export { default as FormDialog } from './FormDialog.svelte';
4
+ export { Icon } from './icons/index.js';
5
+ export { default as Toast } from './Toast.svelte';
6
+ export { default as Upload } from './Upload.svelte';
7
+ export { default as UserCard } from './UserCard.svelte';