@guren/server 1.0.0-rc.9 → 1.1.0
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/{Application-DtWDHXr1.d.ts → Application-BnsyCKXY.d.ts} +79 -8
- package/dist/AuthManager-SfhCNkAU.d.ts +79 -0
- package/dist/{BroadcastManager-AkIWUGJo.d.ts → BroadcastManager-CGWl9rUO.d.ts} +5 -0
- package/dist/{ConsoleKernel-CqCVrdZs.d.ts → ConsoleKernel-BDtBETjm.d.ts} +1 -1
- package/dist/{Gate-CNkBYf8m.d.ts → Gate-CynjZCtS.d.ts} +5 -0
- package/dist/{I18nManager-Dtgzsf5n.d.ts → I18nManager-BiSoczfV.d.ts} +6 -1
- package/dist/McpServiceProvider-JW6PDVMD.js +7 -0
- package/dist/api-token-BSSCLlFW.d.ts +541 -0
- package/dist/auth/index.d.ts +9 -327
- package/dist/auth/index.js +59 -6684
- package/dist/authorization/index.d.ts +2 -2
- package/dist/authorization/index.js +19 -604
- package/dist/broadcasting/index.d.ts +2 -2
- package/dist/broadcasting/index.js +12 -895
- package/dist/cache/index.js +8 -809
- package/dist/chunk-2T6JN4VR.js +1563 -0
- package/dist/chunk-44F7JQ7I.js +950 -0
- package/dist/chunk-74HTZG3V.js +331 -0
- package/dist/chunk-A3ISJVEV.js +598 -0
- package/dist/chunk-CSDKWLFD.js +652 -0
- package/dist/chunk-CSRQTEQA.js +839 -0
- package/dist/chunk-DAQKYKLH.js +182 -0
- package/dist/chunk-EDRGAM6G.js +647 -0
- package/dist/chunk-EGU5KB7V.js +818 -0
- package/dist/chunk-H32L2NE3.js +372 -0
- package/dist/chunk-HKQSAFSN.js +837 -0
- package/dist/chunk-IOTWFHZU.js +558 -0
- package/dist/chunk-ONSDE37A.js +125 -0
- package/dist/chunk-QH4NUKSV.js +255 -0
- package/dist/chunk-QQKTH5KX.js +114 -0
- package/dist/chunk-R2TCP7D7.js +409 -0
- package/dist/chunk-SIP34GBE.js +380 -0
- package/dist/chunk-THSX7OOR.js +454 -0
- package/dist/chunk-UY3AZSYL.js +14 -0
- package/dist/chunk-VT5KRDPH.js +134 -0
- package/dist/chunk-WJJ5CTNI.js +907 -0
- package/dist/chunk-WVY45EIW.js +359 -0
- package/dist/chunk-ZRBLZY3M.js +462 -0
- package/dist/client-CKXJLsTe.d.ts +232 -0
- package/dist/email-verification-CAeArjui.d.ts +327 -0
- package/dist/encryption/index.js +48 -556
- package/dist/errors-JOOPDDQ6.js +34 -0
- package/dist/events/index.js +14 -316
- package/dist/health/index.js +12 -367
- package/dist/i18n/index.d.ts +2 -2
- package/dist/i18n/index.js +14 -583
- package/dist/index.d.ts +37 -239
- package/dist/index.js +2931 -19222
- package/dist/lambda/index.d.ts +9 -7
- package/dist/lambda/index.js +4 -9
- package/dist/logging/index.js +12 -545
- package/dist/mail/index.d.ts +29 -1
- package/dist/mail/index.js +15 -684
- package/dist/mcp/index.d.ts +7 -5
- package/dist/mcp/index.js +5 -378
- package/dist/notifications/index.d.ts +8 -6
- package/dist/notifications/index.js +13 -730
- package/dist/queue/index.d.ts +37 -7
- package/dist/queue/index.js +22 -940
- package/dist/redis/index.d.ts +366 -0
- package/dist/redis/index.js +597 -0
- package/dist/runtime/index.d.ts +8 -6
- package/dist/runtime/index.js +26 -244
- package/dist/scheduling/index.js +14 -822
- package/dist/storage/index.d.ts +1 -0
- package/dist/storage/index.js +6 -824
- package/dist/vite/index.d.ts +2 -2
- package/dist/vite/index.js +5 -1
- package/package.json +15 -7
- package/dist/api-token-JOif2CtG.d.ts +0 -1792
package/dist/vite/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
interface GurenVitePluginOptions {
|
|
2
|
-
/** Alias for
|
|
2
|
+
/** Alias prefix for application imports such as `@/.guren/routes.gen` (defaults to `@`). */
|
|
3
3
|
appAlias?: string;
|
|
4
|
-
/**
|
|
4
|
+
/** Directory the alias resolves to, relative to the project root (defaults to `.`, the project root). */
|
|
5
5
|
appDir?: string;
|
|
6
6
|
/** Alias for the frontend resources directory (defaults to `@resources`). */
|
|
7
7
|
resourcesAlias?: string;
|
package/dist/vite/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import path from "path";
|
|
3
3
|
var defaultOptions = {
|
|
4
4
|
appAlias: "@",
|
|
5
|
-
appDir: "
|
|
5
|
+
appDir: ".",
|
|
6
6
|
resourcesAlias: "@resources",
|
|
7
7
|
resourcesDir: "resources/js",
|
|
8
8
|
entry: "resources/js/app.tsx",
|
|
@@ -65,6 +65,10 @@ function ensureBuild(config, options, root, env) {
|
|
|
65
65
|
config.build.emptyOutDir = true;
|
|
66
66
|
}
|
|
67
67
|
if (isSsrBuild) {
|
|
68
|
+
config.ssr ??= {};
|
|
69
|
+
if (config.ssr.noExternal === void 0) {
|
|
70
|
+
config.ssr.noExternal = true;
|
|
71
|
+
}
|
|
68
72
|
if (config.build.outDir === void 0) {
|
|
69
73
|
config.build.outDir = options.ssrOutDir;
|
|
70
74
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guren/server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -96,6 +96,10 @@
|
|
|
96
96
|
"./lambda": {
|
|
97
97
|
"types": "./dist/lambda/index.d.ts",
|
|
98
98
|
"default": "./dist/lambda/index.js"
|
|
99
|
+
},
|
|
100
|
+
"./redis": {
|
|
101
|
+
"types": "./dist/redis/index.d.ts",
|
|
102
|
+
"default": "./dist/redis/index.js"
|
|
99
103
|
}
|
|
100
104
|
},
|
|
101
105
|
"scripts": {
|
|
@@ -105,20 +109,21 @@
|
|
|
105
109
|
"test": "bun test"
|
|
106
110
|
},
|
|
107
111
|
"dependencies": {
|
|
108
|
-
"@guren/
|
|
112
|
+
"@guren/orm": "^1.0.1",
|
|
109
113
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
110
114
|
"chalk": "^5.3.0",
|
|
111
115
|
"consola": "^3.4.2",
|
|
112
116
|
"figlet": "^1.7.0",
|
|
113
|
-
"hono": "^4.12.
|
|
114
|
-
"ioredis": "^5.
|
|
115
|
-
"nodemailer": "^
|
|
117
|
+
"hono": "^4.12.29",
|
|
118
|
+
"ioredis": "^5.11.1",
|
|
119
|
+
"nodemailer": "^9.0.1"
|
|
116
120
|
},
|
|
117
121
|
"peerDependencies": {
|
|
118
122
|
"@aws-sdk/client-s3": "^3.0.0",
|
|
119
123
|
"@aws-sdk/client-sqs": "^3.0.0",
|
|
120
124
|
"@aws-sdk/s3-request-presigner": "^3.0.0",
|
|
121
|
-
"vite": ">=7.0.0"
|
|
125
|
+
"vite": ">=7.0.0",
|
|
126
|
+
"@guren/inertia-client": "^1.0.0"
|
|
122
127
|
},
|
|
123
128
|
"peerDependenciesMeta": {
|
|
124
129
|
"@aws-sdk/client-s3": {
|
|
@@ -129,12 +134,15 @@
|
|
|
129
134
|
},
|
|
130
135
|
"@aws-sdk/s3-request-presigner": {
|
|
131
136
|
"optional": true
|
|
137
|
+
},
|
|
138
|
+
"@guren/inertia-client": {
|
|
139
|
+
"optional": true
|
|
132
140
|
}
|
|
133
141
|
},
|
|
134
142
|
"devDependencies": {
|
|
135
143
|
"@types/ioredis": "^5.0.0",
|
|
136
144
|
"@types/node": "^20.14.10",
|
|
137
|
-
"@types/nodemailer": "^
|
|
145
|
+
"@types/nodemailer": "^8.0.1",
|
|
138
146
|
"tsup": "^8.5.0",
|
|
139
147
|
"typescript": "^5.4.0",
|
|
140
148
|
"vite": "^8.0.0"
|