next-admin-svr 0.1.28 → 0.1.49
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/lib/index.d.ts +3 -1
- package/lib/index.js +1502 -21354
- package/lib/index.mjs +2986 -0
- package/lib/robot/index.d.ts +5 -0
- package/lib/robot/orchestrator.d.ts +25 -0
- package/lib/robot/types.d.ts +110 -0
- package/lib/routes/robot-knowledge-entry.d.ts +3 -0
- package/lib/routes/robot.d.ts +3 -0
- package/lib/utils/email/watch-and-sync-iwiki.d.ts +50 -0
- package/package.json +9 -3
- package/lib/utils/cos/sync-git.d.ts +0 -5
- package/lib/utils/font-project/config.d.ts +0 -7
- package/lib/utils/font-project/index.d.ts +0 -34
- package/lib/utils/icon-project/config.d.ts +0 -11
- package/lib/utils/icon-project/index.d.ts +0 -39
- package/lib/utils/image/config.d.ts +0 -11
- package/lib/utils/image/index.d.ts +0 -20
- package/lib/utils/image/upload-core.d.ts +0 -38
- package/lib/utils/mp-cli/config.d.ts +0 -5
- package/lib/utils/mp-cli/helper.d.ts +0 -2
- package/lib/utils/mp-cli/mp-ci.d.ts +0 -38
- package/lib/utils/mp-cli/record.d.ts +0 -12
- package/lib/utils/mp-cli/start-from-mcp.d.ts +0 -16
- package/lib/utils/pipeline/config.d.ts +0 -1
- package/lib/utils/pipeline/core.d.ts +0 -22
- package/lib/utils/pipeline/helper.d.ts +0 -7
- package/lib/utils/tinypng.d.ts +0 -8
- package/lib/utils/white-user/config.d.ts +0 -20
- package/lib/utils/white-user/update-cos.d.ts +0 -19
package/lib/index.d.ts
CHANGED
|
@@ -9,8 +9,10 @@ export { default as imageOpenRouter } from './routes/image-open';
|
|
|
9
9
|
export { default as mpCiOpenRouter } from './routes/mp-ci-open';
|
|
10
10
|
export { default as pipelineRouter } from './routes/pipeline';
|
|
11
11
|
export { default as pipelineOpenRouter } from './routes/pipeline-open';
|
|
12
|
+
export { default as robotRouter } from './routes/robot';
|
|
13
|
+
export { default as robotKnowledgeEntryRouter } from './routes/robot-knowledge-entry';
|
|
12
14
|
export { default as whiteUserRouter } from './routes/white-user';
|
|
13
15
|
export { default as whiteUserOpenRouter } from './routes/white-user-open';
|
|
14
16
|
export { coreModule } from './utils/init';
|
|
15
17
|
export { createUpdateWhiteUserCosCron } from './utils/white-user/cron';
|
|
16
|
-
export {
|
|
18
|
+
export { watchEmailAndSyncToIwiki } from './utils/email/watch-and-sync-iwiki';
|