@fluojs/cron 1.0.1 → 1.0.2
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/README.ko.md +3 -1
- package/README.md +3 -1
- package/package.json +4 -4
package/README.ko.md
CHANGED
|
@@ -181,7 +181,9 @@ singleton provider/controller만 스케줄링됩니다. Request-scoped 및 trans
|
|
|
181
181
|
- `SCHEDULING_REGISTRY`: `SchedulingRegistry` 서비스를 위한 주입 토큰입니다.
|
|
182
182
|
- `normalizeCronModuleOptions(...)`: module option과 기본값을 정규화합니다.
|
|
183
183
|
- `createCronPlatformStatusSnapshot(...)`: health/readiness 통합을 위한 status snapshot을 생성합니다.
|
|
184
|
-
- 공개 타입: `
|
|
184
|
+
- 공개 scheduling 타입: `SchedulingTaskKind`, `SchedulingTaskCallback`, `SchedulingTaskOptions`, `CronTaskOptions`, `IntervalTaskOptions`, `TimeoutTaskOptions`, `CronTaskMetadata`, `IntervalTaskMetadata`, `TimeoutTaskMetadata`, `SchedulingTaskMetadata`, `CronTaskDescriptor`, `SchedulingTaskDescriptor`, `SchedulingRegistry`.
|
|
185
|
+
- 공개 module 및 scheduler 타입: `CronModuleOptions`, `NormalizedCronModuleOptions`, `CronDistributedOptions`, `CronShutdownOptions`, `CronScheduleOptions`, `CronScheduler`, `CronScheduledJob`.
|
|
186
|
+
- 공개 status 타입: `CronLifecycleState`, `CronStatusAdapterInput`, `CronPlatformStatusSnapshot`.
|
|
185
187
|
- 메타데이터 헬퍼와 심볼: `defineSchedulingTaskMetadata`, `defineCronTaskMetadata`, `getSchedulingTaskMetadata`, `getCronTaskMetadata`, `getSchedulingTaskMetadataEntries`, `getCronTaskMetadataEntries`, `schedulingMetadataSymbol`, `cronMetadataSymbol`.
|
|
186
188
|
|
|
187
189
|
|
package/README.md
CHANGED
|
@@ -181,7 +181,9 @@ Only singleton providers/controllers are scheduled. Request-scoped and transient
|
|
|
181
181
|
- `SCHEDULING_REGISTRY`: Injection token for the `SchedulingRegistry` service.
|
|
182
182
|
- `normalizeCronModuleOptions(...)`: Normalizes module options and defaults.
|
|
183
183
|
- `createCronPlatformStatusSnapshot(...)`: Creates a status snapshot for health/readiness integrations.
|
|
184
|
-
- Public types: `
|
|
184
|
+
- Public scheduling types: `SchedulingTaskKind`, `SchedulingTaskCallback`, `SchedulingTaskOptions`, `CronTaskOptions`, `IntervalTaskOptions`, `TimeoutTaskOptions`, `CronTaskMetadata`, `IntervalTaskMetadata`, `TimeoutTaskMetadata`, `SchedulingTaskMetadata`, `CronTaskDescriptor`, `SchedulingTaskDescriptor`, and `SchedulingRegistry`.
|
|
185
|
+
- Public module and scheduler types: `CronModuleOptions`, `NormalizedCronModuleOptions`, `CronDistributedOptions`, `CronShutdownOptions`, `CronScheduleOptions`, `CronScheduler`, and `CronScheduledJob`.
|
|
186
|
+
- Public status types: `CronLifecycleState`, `CronStatusAdapterInput`, and `CronPlatformStatusSnapshot`.
|
|
185
187
|
- Metadata helpers and symbols: `defineSchedulingTaskMetadata`, `defineCronTaskMetadata`, `getSchedulingTaskMetadata`, `getCronTaskMetadata`, `getSchedulingTaskMetadataEntries`, `getCronTaskMetadataEntries`, `schedulingMetadataSymbol`, `cronMetadataSymbol`.
|
|
186
188
|
|
|
187
189
|
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"timeout",
|
|
10
10
|
"distributed-lock"
|
|
11
11
|
],
|
|
12
|
-
"version": "1.0.
|
|
12
|
+
"version": "1.0.2",
|
|
13
13
|
"private": false,
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"repository": {
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"croner": "^8.1.2",
|
|
40
|
-
"@fluojs/core": "^1.0.
|
|
41
|
-
"@fluojs/di": "^1.0.
|
|
40
|
+
"@fluojs/core": "^1.0.2",
|
|
41
|
+
"@fluojs/di": "^1.0.2",
|
|
42
42
|
"@fluojs/redis": "^1.0.0",
|
|
43
|
-
"@fluojs/runtime": "^1.0
|
|
43
|
+
"@fluojs/runtime": "^1.1.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"vitest": "^3.2.4"
|