@stacksjs/ts-cloud 0.5.15 → 0.5.16

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.
@@ -5,4 +5,10 @@
5
5
  * if no box is reachable it returns null and the dashboard renders sample data.
6
6
  */
7
7
  import type { CloudConfig, EnvironmentType } from '@ts-cloud/core';
8
+ export declare function parseBlock(output: string): Record<string, string> & {
9
+ services: Array<{
10
+ name: string;
11
+ status: string;
12
+ }>;
13
+ };
8
14
  export declare function resolveServerDashboardData(config: CloudConfig, environment: EnvironmentType): Promise<Record<string, any> | null>;
@@ -0,0 +1 @@
1
+ export {};
package/dist/index.js CHANGED
@@ -83795,6 +83795,9 @@ init_client();
83795
83795
 
83796
83796
  // src/deploy/dashboard-data.ts
83797
83797
  init_s3();
83798
+
83799
+ // src/aws/wafv2.ts
83800
+ init_client();
83798
83801
  // src/drivers/factory.ts
83799
83802
  await init_dist2();
83800
83803
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/ts-cloud",
3
3
  "type": "module",
4
- "version": "0.5.15",
4
+ "version": "0.5.16",
5
5
  "description": "A lightweight, performant infrastructure-as-code library and CLI for deploying both server-based (EC2) and serverless applications.",
6
6
  "author": "Chris Breuer <chris@stacksjs.com>",
7
7
  "license": "MIT",
@@ -89,8 +89,8 @@
89
89
  "test": "bun test"
90
90
  },
91
91
  "dependencies": {
92
- "@ts-cloud/aws-types": "0.5.15",
93
- "@ts-cloud/core": "0.5.15",
92
+ "@ts-cloud/aws-types": "0.5.16",
93
+ "@ts-cloud/core": "0.5.16",
94
94
  "@stacksjs/ts-xml": "^0.1.0"
95
95
  },
96
96
  "devDependencies": {