alepha 0.9.4 → 0.9.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/LICENSE +21 -21
- package/README.md +93 -93
- package/batch.d.ts +489 -13
- package/bucket.d.ts +446 -9
- package/cache.d.ts +132 -1
- package/command.d.ts +2 -0
- package/core.d.ts +101 -53
- package/email.cjs +8 -0
- package/email.d.ts +246 -0
- package/email.js +1 -0
- package/lock.d.ts +412 -23
- package/logger.d.ts +42 -37
- package/package.json +50 -43
- package/postgres.d.ts +1670 -108
- package/queue.d.ts +651 -2
- package/react/auth.d.ts +109 -112
- package/react/form.d.ts +11 -4
- package/react/head.d.ts +1 -1
- package/react/i18n.d.ts +5 -2
- package/react.d.ts +219 -174
- package/redis.d.ts +6 -6
- package/router.d.ts +1 -0
- package/security.d.ts +5 -5
- package/server/links.d.ts +40 -29
- package/server/proxy.d.ts +192 -0
- package/server.d.ts +601 -29
- package/topic.d.ts +803 -11
- package/vite.d.ts +8 -4
package/vite.d.ts
CHANGED
|
@@ -90,10 +90,12 @@ interface VercelConfig {
|
|
|
90
90
|
projectName?: string;
|
|
91
91
|
orgId?: string;
|
|
92
92
|
projectId?: string;
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
93
|
+
config?: Record<string, any> & {
|
|
94
|
+
crons?: Array<{
|
|
95
|
+
path: string;
|
|
96
|
+
schedule: string;
|
|
97
|
+
}>;
|
|
98
|
+
};
|
|
97
99
|
}
|
|
98
100
|
declare function viteAlephaBuildVercel(opts?: ViteAlephaBuildVercelOptions): Promise<{
|
|
99
101
|
name: string;
|
|
@@ -157,6 +159,8 @@ declare function viteAlepha(options?: ViteAlephaOptions): (Plugin | Promise<Plug
|
|
|
157
159
|
declare global {
|
|
158
160
|
var __alepha: Alepha;
|
|
159
161
|
}
|
|
162
|
+
//# sourceMappingURL=index.d.ts.map
|
|
163
|
+
|
|
160
164
|
//#endregion
|
|
161
165
|
export { VercelConfig, ViteAlephaBuildOptions, ViteAlephaBuildVercelOptions, ViteAlephaDevOptions, ViteAlephaOptions, ViteCompressOptions, compressFile, viteAlepha, viteAlephaBuild, viteAlephaBuildVercel, viteAlephaDev, viteCompress };
|
|
162
166
|
//# sourceMappingURL=index.d.ts.map
|