@wabot-dev/framework 0.4.0-beta.1 → 0.4.0-beta.3
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/src/_virtual/CronDate.js +3 -0
- package/dist/src/_virtual/CronDayOfMonth.js +3 -0
- package/dist/src/_virtual/CronDayOfWeek.js +3 -0
- package/dist/src/_virtual/CronExpression.js +3 -0
- package/dist/src/_virtual/CronExpressionParser.js +3 -0
- package/dist/src/_virtual/CronField.js +3 -0
- package/dist/src/_virtual/CronFieldCollection.js +3 -0
- package/dist/src/_virtual/CronFileParser.js +3 -0
- package/dist/src/_virtual/CronHour.js +3 -0
- package/dist/src/_virtual/CronMinute.js +3 -0
- package/dist/src/_virtual/CronMonth.js +3 -0
- package/dist/src/_virtual/CronSecond.js +3 -0
- package/dist/src/_virtual/index.js +5 -0
- package/dist/src/_virtual/index2.js +3 -0
- package/dist/src/_virtual/index3.js +3 -0
- package/dist/src/_virtual/luxon.js +3 -0
- package/dist/src/_virtual/random.js +3 -0
- package/dist/src/_virtual/types.js +3 -0
- package/dist/src/addon/async/pg/PgJobRepository.js +1 -0
- package/dist/src/feature/async/@cron.js +17 -0
- package/dist/src/feature/async/CronJob.js +67 -0
- package/dist/src/feature/async/CronJobRepository.js +19 -0
- package/dist/src/feature/async/CronScheduler.js +165 -0
- package/dist/src/feature/async/runCronHandlers.js +18 -0
- package/dist/src/index.d.ts +11 -1
- package/dist/src/index.js +2 -0
- package/dist/src/node_modules/cron-parser/dist/CronDate.js +510 -0
- package/dist/src/node_modules/cron-parser/dist/CronExpression.js +420 -0
- package/dist/src/node_modules/cron-parser/dist/CronExpressionParser.js +396 -0
- package/dist/src/node_modules/cron-parser/dist/CronFieldCollection.js +382 -0
- package/dist/src/node_modules/cron-parser/dist/CronFileParser.js +122 -0
- package/dist/src/node_modules/cron-parser/dist/fields/CronDayOfMonth.js +55 -0
- package/dist/src/node_modules/cron-parser/dist/fields/CronDayOfWeek.js +62 -0
- package/dist/src/node_modules/cron-parser/dist/fields/CronField.js +193 -0
- package/dist/src/node_modules/cron-parser/dist/fields/CronHour.js +51 -0
- package/dist/src/node_modules/cron-parser/dist/fields/CronMinute.js +51 -0
- package/dist/src/node_modules/cron-parser/dist/fields/CronMonth.js +56 -0
- package/dist/src/node_modules/cron-parser/dist/fields/CronSecond.js +51 -0
- package/dist/src/node_modules/cron-parser/dist/fields/index.js +44 -0
- package/dist/src/node_modules/cron-parser/dist/fields/types.js +12 -0
- package/dist/src/node_modules/cron-parser/dist/index.js +49 -0
- package/dist/src/node_modules/cron-parser/dist/utils/random.js +48 -0
- package/dist/src/node_modules/luxon/build/node/luxon.js +7802 -0
- package/package.json +2 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wabot-dev/framework",
|
|
3
|
-
"version": "0.4.0-beta.
|
|
3
|
+
"version": "0.4.0-beta.3",
|
|
4
4
|
"description": "Framework for IA Chat Bots",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"@rollup/plugin-json": "6.1.0",
|
|
33
33
|
"@rollup/plugin-node-resolve": "16.0.1",
|
|
34
34
|
"@rollup/plugin-typescript": "12.1.2",
|
|
35
|
-
"@yucacodes/ts": "0.0.6",
|
|
36
35
|
"prettier": "^3.5.3",
|
|
37
36
|
"rollup": "4.39.0",
|
|
38
37
|
"tsup": "^8.4.0",
|
|
@@ -48,7 +47,7 @@
|
|
|
48
47
|
"@types/jsonwebtoken": "^9.0.10",
|
|
49
48
|
"@types/node": "22.14.1",
|
|
50
49
|
"@types/pg": "^8.11.14",
|
|
51
|
-
"@yucacodes/ts": "
|
|
50
|
+
"@yucacodes/ts": "0.0.6",
|
|
52
51
|
"big.js": "^7.0.1",
|
|
53
52
|
"body-parser": "^2.2.0",
|
|
54
53
|
"cron-parser": "^5.4.0",
|