@lafken/schedule 0.6.4 → 0.7.0
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/resolver/cron/cron.d.ts +1 -1
- package/lib/resolver/cron/cron.js +2 -2
- package/package.json +32 -13
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CloudwatchEventRule } from '@
|
|
1
|
+
import { CloudwatchEventRule } from '@cdktn/provider-aws/lib/cloudwatch-event-rule';
|
|
2
2
|
import { type AppModule } from '@lafken/resolver';
|
|
3
3
|
import type { CronProps } from './cron.types';
|
|
4
4
|
declare const Cron_base: (new (...args: any[]) => {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Cron = void 0;
|
|
4
|
-
const cloudwatch_event_rule_1 = require("@
|
|
5
|
-
const cloudwatch_event_target_1 = require("@
|
|
4
|
+
const cloudwatch_event_rule_1 = require("@cdktn/provider-aws/lib/cloudwatch-event-rule");
|
|
5
|
+
const cloudwatch_event_target_1 = require("@cdktn/provider-aws/lib/cloudwatch-event-target");
|
|
6
6
|
const resolver_1 = require("@lafken/resolver");
|
|
7
7
|
class Cron extends resolver_1.lafkenResource.make(cloudwatch_event_rule_1.CloudwatchEventRule) {
|
|
8
8
|
props;
|
package/package.json
CHANGED
|
@@ -1,17 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lafken/schedule",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Define EventBridge scheduled rules and cron jobs using TypeScript decorators with Lafken",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"aws",
|
|
8
8
|
"eventbridge",
|
|
9
9
|
"schedule",
|
|
10
10
|
"cron",
|
|
11
|
+
"scheduling",
|
|
11
12
|
"serverless",
|
|
13
|
+
"typescript",
|
|
14
|
+
"decorators",
|
|
12
15
|
"lafken"
|
|
13
16
|
],
|
|
17
|
+
"homepage": "https://github.com/Hero64/lafken#readme",
|
|
18
|
+
"bugs": "https://github.com/Hero64/lafken/issues",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/Hero64/lafken",
|
|
22
|
+
"directory": "packages/schedule"
|
|
23
|
+
},
|
|
14
24
|
"license": "MIT",
|
|
25
|
+
"author": "Aníbal Jorquera",
|
|
15
26
|
"exports": {
|
|
16
27
|
"./main": {
|
|
17
28
|
"import": "./lib/main/index.js",
|
|
@@ -38,19 +49,27 @@
|
|
|
38
49
|
"lib"
|
|
39
50
|
],
|
|
40
51
|
"dependencies": {
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"constructs": "10.4.4",
|
|
44
|
-
"reflect-metadata": "0.2.2",
|
|
45
|
-
"@lafken/common": "0.6.4",
|
|
46
|
-
"@lafken/resolver": "0.6.4"
|
|
52
|
+
"reflect-metadata": "^0.2.2",
|
|
53
|
+
"@lafken/resolver": "0.7.0"
|
|
47
54
|
},
|
|
48
55
|
"devDependencies": {
|
|
49
|
-
"@
|
|
50
|
-
"@types/jest": "30.0.0",
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
56
|
+
"@cdktn/provider-aws": "^23.0.0",
|
|
57
|
+
"@types/jest": "^30.0.0",
|
|
58
|
+
"cdktn": "^0.22.0",
|
|
59
|
+
"constructs": "^10.4.5",
|
|
60
|
+
"jest": "^30.2.0",
|
|
61
|
+
"ts-jest": "^29.4.6",
|
|
62
|
+
"ts-node": "^10.9.2",
|
|
63
|
+
"@lafken/common": "0.7.0"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"@cdktn/provider-aws": "^23.0.0",
|
|
67
|
+
"@lafken/common": "0.7.0",
|
|
68
|
+
"cdktn": "^0.22.0",
|
|
69
|
+
"constructs": "^10.4.5"
|
|
70
|
+
},
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": ">=20.19"
|
|
54
73
|
},
|
|
55
74
|
"publishConfig": {
|
|
56
75
|
"access": "public"
|