@bitblit/ratchet-epsilon-common 6.0.147-alpha → 6.0.150-alpha
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.
|
@@ -3,7 +3,7 @@ export interface AbstractCronEntry {
|
|
|
3
3
|
eventFilter?: RegExp;
|
|
4
4
|
minuteFilter?: number[];
|
|
5
5
|
hourFilter?: number[];
|
|
6
|
-
dayOfWeekFilter?:
|
|
6
|
+
dayOfWeekFilter?: (1 | 2 | 3 | 4 | 5 | 6 | 7)[];
|
|
7
7
|
dayOfMonthFilter?: number[];
|
|
8
8
|
monthOfYearFilter?: number[];
|
|
9
9
|
contextMatchFilter?: RegExp;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitblit/ratchet-epsilon-common",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.150-alpha",
|
|
4
4
|
"description": "Tiny adapter to simplify building API gateway Lambda APIS",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"bin": {
|
|
@@ -67,17 +67,17 @@
|
|
|
67
67
|
"@aws-sdk/client-sns": "3.922.0",
|
|
68
68
|
"@aws-sdk/client-sqs": "3.922.0",
|
|
69
69
|
"@aws-sdk/types": "3.922.0",
|
|
70
|
-
"@bitblit/ratchet-aws": "6.0.
|
|
71
|
-
"@bitblit/ratchet-common": "6.0.
|
|
72
|
-
"@bitblit/ratchet-misc": "6.0.
|
|
73
|
-
"@bitblit/ratchet-node-only": "6.0.
|
|
70
|
+
"@bitblit/ratchet-aws": "6.0.150-alpha",
|
|
71
|
+
"@bitblit/ratchet-common": "6.0.150-alpha",
|
|
72
|
+
"@bitblit/ratchet-misc": "6.0.150-alpha",
|
|
73
|
+
"@bitblit/ratchet-node-only": "6.0.150-alpha",
|
|
74
74
|
"@smithy/abort-controller": "4.2.4",
|
|
75
75
|
"@smithy/smithy-client": "4.9.2",
|
|
76
76
|
"@smithy/util-waiter": "4.2.4",
|
|
77
77
|
"clear": "0.1.0",
|
|
78
78
|
"commander": "14.0.2",
|
|
79
79
|
"cross-fetch": "4.1.0",
|
|
80
|
-
"js-yaml": "4.1.
|
|
80
|
+
"js-yaml": "4.1.1",
|
|
81
81
|
"jwks-rsa": "3.2.0",
|
|
82
82
|
"luxon": "3.7.2",
|
|
83
83
|
"route-parser": "0.0.5",
|
|
@@ -87,10 +87,10 @@
|
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|
|
89
89
|
"@apollo/server": "^5.1.0",
|
|
90
|
-
"@bitblit/ratchet-aws": "6.0.
|
|
91
|
-
"@bitblit/ratchet-common": "6.0.
|
|
92
|
-
"@bitblit/ratchet-misc": "6.0.
|
|
93
|
-
"@bitblit/ratchet-node-only": "6.0.
|
|
90
|
+
"@bitblit/ratchet-aws": "6.0.150-alpha",
|
|
91
|
+
"@bitblit/ratchet-common": "6.0.150-alpha",
|
|
92
|
+
"@bitblit/ratchet-misc": "6.0.150-alpha",
|
|
93
|
+
"@bitblit/ratchet-node-only": "6.0.150-alpha",
|
|
94
94
|
"graphql": "^16.12.0"
|
|
95
95
|
},
|
|
96
96
|
"peerDependenciesMeta": {
|
|
@@ -3,7 +3,7 @@ export interface AbstractCronEntry {
|
|
|
3
3
|
eventFilter?: RegExp; // If set, matches against the schedule name from CloudWatch events
|
|
4
4
|
minuteFilter?: number[]; // If set and length>0, only minutes matching this array will trigger 0-59
|
|
5
5
|
hourFilter?: number[]; // If set and length>0, only hours matching this array will trigger (as defined by the timezone in cron config) 0-23
|
|
6
|
-
dayOfWeekFilter?:
|
|
6
|
+
dayOfWeekFilter?: (1 | 2 | 3 | 4 | 5 | 6 | 7)[]; // If set and length>0, only days of week matching this array will trigger (as defined by the timezone in cron config) 1-7 (1=Monday, 7=Sunday)
|
|
7
7
|
dayOfMonthFilter?: number[]; // If set and length>0, only days of month matching this array will trigger (as defined by the timezone in cron config) 1-31
|
|
8
8
|
monthOfYearFilter?: number[]; // If set and length>0, only months of year matching this array will trigger (as defined by the timezone in cron config) 1-12
|
|
9
9
|
contextMatchFilter?: RegExp; // If set, the context must match this filter
|