stacks 0.58.57 → 0.58.58

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.
Files changed (95) hide show
  1. package/core/actions/dist/src/index.js +9 -3
  2. package/core/actions/dist/src/release.js +9 -3
  3. package/core/actions/dist/src/upgrade.js +1 -1
  4. package/core/actions/package.json +1 -1
  5. package/core/actions/src/action.ts +11 -3
  6. package/core/ai/dist/index.js +4 -4
  7. package/core/ai/package.json +3 -3
  8. package/core/alias/package.json +1 -1
  9. package/core/analytics/package.json +1 -1
  10. package/core/api/package.json +1 -1
  11. package/core/arrays/package.json +1 -1
  12. package/core/auth/package.json +1 -1
  13. package/core/buddy/package.json +1 -1
  14. package/core/build/package.json +1 -1
  15. package/core/bun-create/bud/package.json +1 -1
  16. package/core/bun-create/buddy/package.json +1 -1
  17. package/core/bun-create/stack/package.json +1 -1
  18. package/core/bun-create/stacks/package.json +1 -1
  19. package/core/bun-create/stx/package.json +1 -1
  20. package/core/bun-plugin-yaml/package.json +1 -1
  21. package/core/cache/package.json +2 -2
  22. package/core/chat/package.json +8 -8
  23. package/core/cli/dist/index.js +1 -1
  24. package/core/cli/package.json +1 -1
  25. package/core/cloud/dist/index.js +69 -39
  26. package/core/cloud/package.json +28 -28
  27. package/core/cloud/src/cloud/aws-sdk-layer/nodejs/package-lock.json +6 -6
  28. package/core/cloud/src/cloud/aws-sdk-layer/nodejs/package.json +2 -2
  29. package/core/cloud/src/cloud/queue.ts +91 -51
  30. package/core/cloud/src/cloud/router-layer/nodejs/package.json +2 -2
  31. package/core/collections/package.json +1 -1
  32. package/core/config/package.json +1 -1
  33. package/core/database/package.json +1 -1
  34. package/core/datetime/package.json +1 -1
  35. package/core/desktop/package.json +9 -9
  36. package/core/development/package.json +1 -1
  37. package/core/dns/package.json +4 -4
  38. package/core/docs/package.json +1 -1
  39. package/core/email/package.json +12 -12
  40. package/core/enums/package.json +1 -1
  41. package/core/env/package.json +1 -1
  42. package/core/error-handling/package.json +1 -1
  43. package/core/eslint-config/package.json +1 -1
  44. package/core/events/package.json +1 -1
  45. package/core/faker/package.json +1 -1
  46. package/core/git/package.json +1 -1
  47. package/core/health/package.json +1 -1
  48. package/core/http/package.json +1 -1
  49. package/core/lint/package.json +1 -1
  50. package/core/logging/package.json +1 -1
  51. package/core/notifications/package.json +22 -22
  52. package/core/objects/package.json +1 -1
  53. package/core/orm/package.json +1 -1
  54. package/core/path/package.json +1 -1
  55. package/core/payments/package.json +1 -1
  56. package/core/push/package.json +5 -5
  57. package/core/query-builder/package.json +1 -1
  58. package/core/queue/dist/index.js +3 -1
  59. package/core/queue/package.json +1 -1
  60. package/core/queue/src/index.ts +3 -1
  61. package/core/raycast/package.json +1 -1
  62. package/core/realtime/package.json +1 -1
  63. package/core/repl/package.json +1 -1
  64. package/core/router/package.json +1 -1
  65. package/core/scheduler/dist/index.js +4 -0
  66. package/core/scheduler/package.json +1 -1
  67. package/core/scheduler/src/index.ts +1 -0
  68. package/core/scheduler/src/schedule.ts +5 -0
  69. package/core/search-engine/package.json +1 -1
  70. package/core/security/package.json +1 -1
  71. package/core/server/package.json +1 -1
  72. package/core/signals/package.json +1 -1
  73. package/core/slug/package.json +1 -1
  74. package/core/sms/package.json +11 -11
  75. package/core/storage/package.json +1 -1
  76. package/core/strings/package.json +1 -1
  77. package/core/tables/package.json +1 -1
  78. package/core/testing/package.json +1 -1
  79. package/core/tinker/package.json +1 -1
  80. package/core/tunnel/package.json +1 -1
  81. package/core/types/package.json +3 -3
  82. package/core/types/src/cron-jobs.ts +6 -1
  83. package/core/ui/package.json +6 -6
  84. package/core/utils/dist/index.js +32 -1
  85. package/core/utils/package.json +1 -1
  86. package/core/utils/src/index.ts +1 -0
  87. package/core/utils/src/retry.ts +33 -0
  88. package/core/validation/package.json +1 -1
  89. package/core/vite/dist/index.js +1 -1
  90. package/core/vite/package.json +1 -1
  91. package/core/whois/package.json +1 -1
  92. package/core/x-ray/package.json +1 -1
  93. package/core/zsh-buddy/package.json +1 -1
  94. package/ide/vscode/package.json +1 -1
  95. package/package.json +1 -1
@@ -526,12 +526,18 @@ export default <Model> {
526
526
  class Action3 {
527
527
  name;
528
528
  description;
529
- longRunning;
529
+ rate;
530
+ tries;
531
+ backoff;
532
+ enabled;
530
533
  handle;
531
- constructor({ name, description, handle }) {
534
+ constructor({ name, description, handle, rate, tries, backoff, enabled }) {
532
535
  this.name = name;
533
536
  this.description = description;
534
- this.longRunning = false;
537
+ this.rate = rate;
538
+ this.tries = tries;
539
+ this.backoff = backoff;
540
+ this.enabled = enabled;
535
541
  this.handle = handle;
536
542
  }
537
543
  }
@@ -528,12 +528,18 @@ export default <Model> {
528
528
  class Action3 {
529
529
  name;
530
530
  description;
531
- longRunning;
531
+ rate;
532
+ tries;
533
+ backoff;
534
+ enabled;
532
535
  handle;
533
- constructor({ name, description, handle }) {
536
+ constructor({ name, description, handle, rate, tries, backoff, enabled }) {
534
537
  this.name = name;
535
538
  this.description = description;
536
- this.longRunning = false;
539
+ this.rate = rate;
540
+ this.tries = tries;
541
+ this.backoff = backoff;
542
+ this.enabled = enabled;
537
543
  this.handle = handle;
538
544
  }
539
545
  }
@@ -6,7 +6,7 @@ import {log} from "@stacksjs/logging";
6
6
  import {projectPath} from "@stacksjs/path";
7
7
  import * as storage from "@stacksjs/storage";
8
8
  // package.json
9
- var version = "0.58.57";
9
+ var version = "0.58.58";
10
10
 
11
11
  // src/upgrade.ts
12
12
  function checkForUncommittedChanges(options2) {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/actions",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "The Stacks actions.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1,13 +1,21 @@
1
+ import type { JobOptions } from '@stacksjs/types'
2
+
1
3
  export class Action {
2
4
  name: string
3
5
  description: string
4
- longRunning: boolean
6
+ rate: JobOptions['rate']
7
+ tries: JobOptions['tries']
8
+ backoff: JobOptions['backoff']
9
+ enabled: JobOptions['enabled']
5
10
  handle: () => Promise<string>
6
11
 
7
- constructor({ name, description, handle }: { name: string, description: string, handle: () => Promise<string> }) {
12
+ constructor({ name, description, handle, rate, tries, backoff, enabled }: { name: string, description: string, handle: () => Promise<string>, rate: JobOptions['rate'], tries: JobOptions['tries'], backoff: JobOptions['backoff'], enabled: JobOptions['enabled'] }) {
8
13
  this.name = name
9
14
  this.description = description
10
- this.longRunning = false // TODO: Implement long running actions
15
+ this.rate = rate
16
+ this.tries = tries
17
+ this.backoff = backoff
18
+ this.enabled = enabled
11
19
  this.handle = handle
12
20
  }
13
21
  }
@@ -8276,7 +8276,7 @@ var commonParams = {
8276
8276
  var package_default = {
8277
8277
  name: "@aws-sdk/client-bedrock",
8278
8278
  description: "AWS SDK for JavaScript Bedrock Client for Node.js, Browser and React Native",
8279
- version: "3.507.0",
8279
+ version: "3.509.0",
8280
8280
  scripts: {
8281
8281
  build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
8282
8282
  "build:cjs": "node ../../scripts/compilation/inline client-bedrock",
@@ -8297,7 +8297,7 @@ var package_default = {
8297
8297
  "@aws-crypto/sha256-js": "3.0.0",
8298
8298
  "@aws-sdk/client-sts": "3.507.0",
8299
8299
  "@aws-sdk/core": "3.496.0",
8300
- "@aws-sdk/credential-provider-node": "3.507.0",
8300
+ "@aws-sdk/credential-provider-node": "3.509.0",
8301
8301
  "@aws-sdk/middleware-host-header": "3.502.0",
8302
8302
  "@aws-sdk/middleware-logger": "3.502.0",
8303
8303
  "@aws-sdk/middleware-recursion-detection": "3.502.0",
@@ -9273,7 +9273,7 @@ var commonParams2 = {
9273
9273
  var package_default2 = {
9274
9274
  name: "@aws-sdk/client-bedrock-runtime",
9275
9275
  description: "AWS SDK for JavaScript Bedrock Runtime Client for Node.js, Browser and React Native",
9276
- version: "3.507.0",
9276
+ version: "3.509.0",
9277
9277
  scripts: {
9278
9278
  build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
9279
9279
  "build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime",
@@ -9294,7 +9294,7 @@ var package_default2 = {
9294
9294
  "@aws-crypto/sha256-js": "3.0.0",
9295
9295
  "@aws-sdk/client-sts": "3.507.0",
9296
9296
  "@aws-sdk/core": "3.496.0",
9297
- "@aws-sdk/credential-provider-node": "3.507.0",
9297
+ "@aws-sdk/credential-provider-node": "3.509.0",
9298
9298
  "@aws-sdk/middleware-host-header": "3.502.0",
9299
9299
  "@aws-sdk/middleware-logger": "3.502.0",
9300
9300
  "@aws-sdk/middleware-recursion-detection": "3.502.0",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/ai",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "Stacks Artificial Intelligence.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -49,10 +49,10 @@
49
49
  "prepublishOnly": "bun --bun run build"
50
50
  },
51
51
  "peerDependencies": {
52
- "@aws-sdk/client-bedrock-runtime": "^3.507.0"
52
+ "@aws-sdk/client-bedrock-runtime": "^3.509.0"
53
53
  },
54
54
  "dependencies": {
55
- "@aws-sdk/client-bedrock-runtime": "^3.507.0"
55
+ "@aws-sdk/client-bedrock-runtime": "^3.509.0"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@stacksjs/development": "workspace:*"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/alias",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "The Stacks aliases.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/analytics",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "Stacks Analytics. Privacy-friendly.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/api",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "The Stacks array utilities.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/arrays",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "The Stacks array utilities.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/auth",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "A more simplistic way to authenticate.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/buddy",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "Meet Buddy. The Stacks runtime.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/build",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "The Stacks framework build tools and configurations.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bun-examples/bud",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "Your project description.",
6
6
  "author": "your-name <your-email>",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bun-examples/buddy",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "Your project description.",
6
6
  "author": "your-name <your-email>",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bun-examples/stack",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "Your project description.",
6
6
  "author": "your-name <your-email>",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bun-examples/stacks",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "Your project description.",
6
6
  "author": "your-name <your-email>",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bun-examples/stx",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "Your project description.",
6
6
  "author": "your-name <your-email>",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bun-plugin-yaml",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "A Bun plugin to load yaml files",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/cache",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "Caching the Stacks way.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -57,7 +57,7 @@
57
57
  "@stacksjs/config": "workspace:*"
58
58
  },
59
59
  "optionalDependencies": {
60
- "@aws-sdk/client-dynamodb": "^3.507.0",
60
+ "@aws-sdk/client-dynamodb": "^3.509.0",
61
61
  "ioredis": "^5.3.2"
62
62
  },
63
63
  "devDependencies": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/chat",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "Easily interact with chat APIs.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -48,25 +48,25 @@
48
48
  "prepublishOnly": "bun --bun run build"
49
49
  },
50
50
  "peerDependencies": {
51
- "@novu/stateless": "^0.23.0",
51
+ "@novu/stateless": "^0.23.1",
52
52
  "@stacksjs/cli": "workspace:*",
53
53
  "@stacksjs/config": "workspace:*",
54
54
  "@stacksjs/error-handling": "workspace:*",
55
55
  "@stacksjs/types": "workspace:*"
56
56
  },
57
57
  "dependencies": {
58
- "@novu/stateless": "^0.23.0",
58
+ "@novu/stateless": "^0.23.1",
59
59
  "@stacksjs/cli": "workspace:*",
60
60
  "@stacksjs/config": "workspace:*",
61
61
  "@stacksjs/error-handling": "workspace:*",
62
62
  "@stacksjs/types": "workspace:*"
63
63
  },
64
64
  "optionalDependencies": {
65
- "@novu/discord": "^0.23.0",
66
- "@novu/ms-teams": "^0.23.0",
67
- "@novu/node": "^0.23.0",
68
- "@novu/slack": "^0.23.0",
69
- "@novu/stateless": "^0.23.0"
65
+ "@novu/discord": "^0.23.1",
66
+ "@novu/ms-teams": "^0.23.1",
67
+ "@novu/node": "^0.23.1",
68
+ "@novu/slack": "^0.23.1",
69
+ "@novu/stateless": "^0.23.1"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@stacksjs/development": "workspace:*"
@@ -14,7 +14,7 @@ async function installStack(name, options) {
14
14
  // src/cli.ts
15
15
  import cac from "cac";
16
16
  // package.json
17
- var version = "0.58.57";
17
+ var version = "0.58.58";
18
18
 
19
19
  // src/cli.ts
20
20
  function cli(name, options) {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/cli",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "TypeScript framework for CLI artisans. Build beautiful console apps with ease.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -1811,43 +1811,23 @@ class QueueStack {
1811
1811
  async init() {
1812
1812
  const jobsDir = path6.jobsPath();
1813
1813
  try {
1814
- const files = await fs.readdir(jobsDir);
1815
- for (const file of files) {
1816
- if (file.endsWith(".ts")) {
1817
- const filePath = path6.jobsPath(file);
1818
- const jobModule = await this.loadJobModule(filePath);
1819
- const rate = jobModule.default.rate || "* * * * *";
1820
- const schedule = Schedule.cron(this.cronScheduleFromRate(rate));
1821
- const id = `QueueRule${pascalCase(file.replace(".ts", ""))}`;
1822
- const rule = new Rule(this.scope, id, {
1823
- ruleName: `${this.props.appName}-${this.props.appEnv}-queue-rule-${slug2(file.replace(".ts", ""))}`,
1824
- schedule
1825
- });
1826
- rule.addTarget(new EcsTask({
1827
- cluster: this.props.cluster,
1828
- taskDefinition: this.props.taskDefinition,
1829
- containerOverrides: [
1830
- {
1831
- containerName: `${this.props.appName}-${this.props.appEnv}-api`,
1832
- environment: [
1833
- {
1834
- name: "QUEUE_WORKER",
1835
- value: "true"
1836
- },
1837
- {
1838
- name: "JOB",
1839
- value: file
1840
- }
1841
- ]
1842
- }
1843
- ],
1844
- retryAttempts: 3,
1845
- subnetSelection: {
1846
- subnetType: ec24.SubnetType.PUBLIC
1847
- }
1848
- }));
1849
- }
1814
+ const jobFiles = await fs.readdir(jobsDir);
1815
+ const actionFiles = await fs.readdir(actionsDir);
1816
+ const jobs = [];
1817
+ for (const file2 of jobFiles) {
1818
+ if (!file2.endsWith(".ts"))
1819
+ continue;
1820
+ const filePath = path6.jobsPath(file2);
1821
+ jobs.push(await this.loadModule(filePath));
1822
+ }
1823
+ for (const file2 of actionFiles) {
1824
+ if (!file2.endsWith(".ts"))
1825
+ continue;
1826
+ const filePath = path6.actionsPath(file2);
1827
+ jobs.push(await this.loadModule(filePath));
1850
1828
  }
1829
+ for (const job of jobs)
1830
+ await this.createQueueRule(job);
1851
1831
  } catch (err2) {
1852
1832
  console.error("Error reading the jobs directory:", err2);
1853
1833
  }
@@ -1862,9 +1842,59 @@ class QueueStack {
1862
1842
  year: parts[4]
1863
1843
  };
1864
1844
  }
1865
- async loadJobModule(filePath) {
1866
- const jobModule = await import(filePath);
1867
- return jobModule;
1845
+ async loadModule(filePath) {
1846
+ const jobModule2 = await import(filePath);
1847
+ return jobModule2;
1848
+ }
1849
+ createQueueRule(job) {
1850
+ const rate = job.default?.rate;
1851
+ if (!rate || job.default?.enabled === false)
1852
+ return;
1853
+ const schedule = Schedule.cron(this.cronScheduleFromRate(rate));
1854
+ const id = `QueueRule${pascalCase(file.replace(".ts", ""))}`;
1855
+ const rule = new Rule(this.scope, id, {
1856
+ ruleName: `${this.props.appName}-${this.props.appEnv}-queue-rule-${slug2(file.replace(".ts", ""))}`,
1857
+ schedule
1858
+ });
1859
+ rule.addTarget(new EcsTask({
1860
+ cluster: this.props.cluster,
1861
+ taskDefinition: this.props.taskDefinition,
1862
+ containerOverrides: [
1863
+ {
1864
+ containerName: `${this.props.appName}-${this.props.appEnv}-api`,
1865
+ environment: [
1866
+ {
1867
+ name: "QUEUE_WORKER",
1868
+ value: "true"
1869
+ },
1870
+ {
1871
+ name: "JOB",
1872
+ value: file
1873
+ },
1874
+ {
1875
+ name: "JOB_BACKOFF_FACTOR",
1876
+ value: jobModule.default?.backoffFactor
1877
+ },
1878
+ {
1879
+ name: "JOB_RETRIES",
1880
+ value: jobModule.default?.tries
1881
+ },
1882
+ {
1883
+ name: "JOB_INITIAL_DELAY",
1884
+ value: jobModule.default?.initialDelay
1885
+ },
1886
+ {
1887
+ name: "JOB_JITTER",
1888
+ value: jobModule.default?.jitter
1889
+ }
1890
+ ]
1891
+ }
1892
+ ],
1893
+ retryAttempts: 1,
1894
+ subnetSelection: {
1895
+ subnetType: ec24.SubnetType.PUBLIC
1896
+ }
1897
+ }));
1868
1898
  }
1869
1899
  }
1870
1900
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/cloud",
3
3
  "type": "module",
4
- "version": "0.58.57",
4
+ "version": "0.58.58",
5
5
  "description": "The Stacks cloud/serverless integration & implementation.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -55,19 +55,19 @@
55
55
  "prepublishOnly": "bun run build"
56
56
  },
57
57
  "peerDependencies": {
58
- "@aws-sdk/client-bedrock": "^3.507.0",
59
- "@aws-sdk/client-cloudformation": "^3.507.0",
60
- "@aws-sdk/client-cloudfront": "^3.507.0",
61
- "@aws-sdk/client-cloudwatch-logs": "^3.508.0",
62
- "@aws-sdk/client-ec2": "^3.507.0",
63
- "@aws-sdk/client-efs": "^3.507.0",
64
- "@aws-sdk/client-iam": "^3.507.0",
65
- "@aws-sdk/client-lambda": "^3.507.0",
66
- "@aws-sdk/client-route-53-domains": "^3.507.0",
67
- "@aws-sdk/client-s3": "^3.507.0",
68
- "@aws-sdk/client-ses": "^3.507.0",
69
- "@aws-sdk/client-sesv2": "^3.507.0",
70
- "@aws-sdk/client-ssm": "^3.507.0",
58
+ "@aws-sdk/client-bedrock": "^3.509.0",
59
+ "@aws-sdk/client-cloudformation": "^3.509.0",
60
+ "@aws-sdk/client-cloudfront": "^3.509.0",
61
+ "@aws-sdk/client-cloudwatch-logs": "^3.509.0",
62
+ "@aws-sdk/client-ec2": "^3.509.0",
63
+ "@aws-sdk/client-efs": "^3.509.0",
64
+ "@aws-sdk/client-iam": "^3.509.0",
65
+ "@aws-sdk/client-lambda": "^3.509.0",
66
+ "@aws-sdk/client-route-53-domains": "^3.509.0",
67
+ "@aws-sdk/client-s3": "^3.509.0",
68
+ "@aws-sdk/client-ses": "^3.509.0",
69
+ "@aws-sdk/client-sesv2": "^3.509.0",
70
+ "@aws-sdk/client-ssm": "^3.509.0",
71
71
  "@stacksjs/config": "workspace:*",
72
72
  "@stacksjs/env": "workspace:*",
73
73
  "@stacksjs/logging": "workspace:*",
@@ -79,20 +79,20 @@
79
79
  "@stacksjs/validation": "workspace:*"
80
80
  },
81
81
  "dependencies": {
82
- "@aws-sdk/client-bedrock": "^3.507.0",
83
- "@aws-sdk/client-cloudformation": "^3.507.0",
84
- "@aws-sdk/client-cloudfront": "^3.507.0",
85
- "@aws-sdk/client-cloudwatch-logs": "^3.508.0",
86
- "@aws-sdk/client-dynamodb": "3.507.0",
87
- "@aws-sdk/client-ec2": "^3.507.0",
88
- "@aws-sdk/client-efs": "^3.507.0",
89
- "@aws-sdk/client-iam": "^3.507.0",
90
- "@aws-sdk/client-lambda": "^3.507.0",
91
- "@aws-sdk/client-route-53-domains": "^3.507.0",
92
- "@aws-sdk/client-s3": "^3.507.0",
93
- "@aws-sdk/client-ses": "^3.507.0",
94
- "@aws-sdk/client-sesv2": "^3.507.0",
95
- "@aws-sdk/client-ssm": "^3.507.0",
82
+ "@aws-sdk/client-bedrock": "^3.509.0",
83
+ "@aws-sdk/client-cloudformation": "^3.509.0",
84
+ "@aws-sdk/client-cloudfront": "^3.509.0",
85
+ "@aws-sdk/client-cloudwatch-logs": "^3.509.0",
86
+ "@aws-sdk/client-dynamodb": "3.509.0",
87
+ "@aws-sdk/client-ec2": "^3.509.0",
88
+ "@aws-sdk/client-efs": "^3.509.0",
89
+ "@aws-sdk/client-iam": "^3.509.0",
90
+ "@aws-sdk/client-lambda": "^3.509.0",
91
+ "@aws-sdk/client-route-53-domains": "^3.509.0",
92
+ "@aws-sdk/client-s3": "^3.509.0",
93
+ "@aws-sdk/client-ses": "^3.509.0",
94
+ "@aws-sdk/client-sesv2": "^3.509.0",
95
+ "@aws-sdk/client-ssm": "^3.509.0",
96
96
  "@stacksjs/config": "workspace:*",
97
97
  "@stacksjs/dns": "workspace:*",
98
98
  "@stacksjs/env": "workspace:*",
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "aws-sdk-layer",
3
- "version": "0.58.53",
3
+ "version": "0.58.57",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "aws-sdk-layer",
9
- "version": "0.58.53",
9
+ "version": "0.58.57",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "aws-sdk": "^2.1552.0"
12
+ "aws-sdk": "^2.1553.0"
13
13
  }
14
14
  },
15
15
  "node_modules/available-typed-arrays": {
@@ -24,9 +24,9 @@
24
24
  }
25
25
  },
26
26
  "node_modules/aws-sdk": {
27
- "version": "2.1552.0",
28
- "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1552.0.tgz",
29
- "integrity": "sha512-sRuzlCeSHXUsdLqsV/E+nPrgBn1EI3BoA38D5qfNMRcPTd9j4G8M4AyMymKyNxLoWOKLqz7xFBa801MHflGwEg==",
27
+ "version": "2.1553.0",
28
+ "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1553.0.tgz",
29
+ "integrity": "sha512-CfZaw8dR9e642aBOeFhkFL7KoQApeLR15uH2IQqfL/12snWYayAAesYh0tEaU+XbhrH0CUsf2Zro5IraEXEZMg==",
30
30
  "dependencies": {
31
31
  "buffer": "4.9.2",
32
32
  "events": "1.1.1",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aws-sdk-layer",
3
- "version": "0.58.57",
3
+ "version": "0.58.58",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -10,6 +10,6 @@
10
10
  "test": "echo \"Error: no test specified\" && exit 1"
11
11
  },
12
12
  "dependencies": {
13
- "aws-sdk": "^2.1552.0"
13
+ "aws-sdk": "^2.1553.0"
14
14
  }
15
15
  }