@blinkk/root-cms 1.0.1-alpha.0 → 1.0.1
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 +22 -0
- package/README.md +66 -0
- package/bin/root-cms.js +17 -0
- package/dist/app.js +212 -0
- package/dist/cli.js +346 -0
- package/dist/client.d.ts +273 -0
- package/dist/client.js +600 -0
- package/dist/core.d.ts +55 -0
- package/dist/core.js +865 -0
- package/dist/functions.d.ts +13 -0
- package/dist/functions.js +714 -0
- package/dist/plugin.d.ts +76 -0
- package/dist/plugin.js +1091 -0
- package/dist/project.d.ts +16 -0
- package/dist/project.js +21 -0
- package/dist/richtext.d.ts +73 -0
- package/dist/richtext.js +129 -0
- package/dist/schema--v3Ho5Lj.d.ts +211 -0
- package/dist/ui/signin.css +173 -0
- package/dist/ui/signin.js +9167 -0
- package/dist/ui/ui.css +2352 -0
- package/dist/ui/ui.js +67731 -0
- package/package.json +118 -13
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as firebase_functions_v2_scheduler from 'firebase-functions/v2/scheduler';
|
|
2
|
+
import { ScheduleOptions } from 'firebase-functions/v2/scheduler';
|
|
3
|
+
|
|
4
|
+
interface CronOptions {
|
|
5
|
+
rootDir?: string;
|
|
6
|
+
scheduleOptions?: Partial<ScheduleOptions>;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Runs offline CMS tasks, such as publishing of scheduled docs.
|
|
10
|
+
*/
|
|
11
|
+
declare function cron(options?: CronOptions): firebase_functions_v2_scheduler.ScheduleFunction;
|
|
12
|
+
|
|
13
|
+
export { type CronOptions, cron };
|