@stacksjs/types 0.58.56 → 0.58.57

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/index.js CHANGED
@@ -399,14 +399,19 @@ var require_pluralize = __commonJS((exports, module) => {
399
399
  var Every;
400
400
  (function(Every2) {
401
401
  Every2["Minute"] = "* * * * *";
402
+ Every2["TwoMinutes"] = "*/2 * * * *";
403
+ Every2["FiveMinutes"] = "*/5 * * * *";
404
+ Every2["TenMinutes"] = "*/10 * * * *";
405
+ Every2["FifteenMinutes"] = "*/15 * * * *";
406
+ Every2["ThirtyMinutes"] = "*/30 * * * *";
402
407
  Every2["Hour"] = "0 * * * *";
403
408
  Every2["HalfHour"] = "0,30 * * * *";
404
409
  Every2["Day"] = "0 0 * * *";
405
- Every2["Month"] = "0 0 1 * *";
406
410
  Every2["Week"] = "0 0 * * 0";
411
+ Every2["Weekday"] = "0 0 * * 1-5";
412
+ Every2["Weekend"] = "0 0 * * 0,6";
413
+ Every2["Month"] = "0 0 1 * *";
407
414
  Every2["Year"] = "0 0 1 1 *";
408
- Every2["FifthMinute"] = "*/5 * * * *";
409
- Every2["TenthMinute"] = "*/10 * * * *";
410
415
  })(Every || (Every = {}));
411
416
  // src/docs.ts
412
417
  var SocialLinkIcon;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/types",
3
3
  "type": "module",
4
- "version": "0.58.56",
4
+ "version": "0.58.57",
5
5
  "description": "The Stacks framework types.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
package/src/configure.ts CHANGED
@@ -1,6 +1,13 @@
1
1
  export interface ConfigureOptions {
2
2
  aws: boolean
3
+ profile: string
4
+ project: boolean
3
5
  verbose: boolean
6
+ accessKeyId: string
7
+ secretAccessKey: string
8
+ region: string
9
+ output: string
10
+ quiet: boolean
4
11
  }
5
12
 
6
13
  export type ConfigureConfig = Partial<ConfigureOptions>
package/src/cron-jobs.ts CHANGED
@@ -35,12 +35,17 @@ export enum Every {
35
35
  // TenSeconds = '*/10 * * * * *',
36
36
  // ThirtySeconds = '*/30 * * * * *',
37
37
  Minute = '* * * * *',
38
+ TwoMinutes = '*/2 * * * *',
39
+ FiveMinutes = '*/5 * * * *',
40
+ TenMinutes = '*/10 * * * *',
41
+ FifteenMinutes = '*/15 * * * *',
42
+ ThirtyMinutes = '*/30 * * * *',
38
43
  Hour = '0 * * * *',
39
44
  HalfHour = '0,30 * * * *',
40
45
  Day = '0 0 * * *',
41
- Month = '0 0 1 * *',
42
46
  Week = '0 0 * * 0',
47
+ Weekday = '0 0 * * 1-5',
48
+ Weekend = '0 0 * * 0,6',
49
+ Month = '0 0 1 * *',
43
50
  Year = '0 0 1 1 *',
44
- FifthMinute = '*/5 * * * *',
45
- TenthMinute = '*/10 * * * *',
46
51
  }