@aws-lite/cloudwatch-logs-types 0.0.0 → 0.0.1

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 (2) hide show
  1. package/index.d.ts +1 -1
  2. package/package.json +16 -3
package/index.d.ts CHANGED
@@ -40,6 +40,6 @@ declare interface AwsLiteCloudWatchLogs {
40
40
 
41
41
  declare module "@aws-lite/client" {
42
42
  interface AwsLiteClient {
43
- CloudWatch Logs: AwsLiteCloudWatch Logs;
43
+ CloudWatchLogs: AwsLiteCloudWatchLogs;
44
44
  }
45
45
  }
package/package.json CHANGED
@@ -1,13 +1,26 @@
1
1
  {
2
2
  "name": "@aws-lite/cloudwatch-logs-types",
3
- "description": "Type definitions for the @aws-lite/cloudwatch-logs plugin",
4
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
+ "description": "Type definitions for the `@aws-lite/cloudwatch-logs` plugin",
5
+ "homepage": "https://aws-lite.org/services/cloudwatch-logs",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/architect/aws-lite.git",
9
+ "directory": "plugins/cloudwatch-logs/types"
10
+ },
11
+ "bugs": "https://github.com/architect/aws-lite/issues",
5
12
  "main": "",
13
+ "engines": {
14
+ "node": ">=16"
15
+ },
16
+ "author": "@architect",
17
+ "license": "Apache-2.0",
6
18
  "types": "index.d.ts",
7
19
  "files": [
8
20
  "index.d.ts"
9
21
  ],
10
22
  "dependencies": {
11
23
  "@aws-sdk/client-cloudwatch-logs": "3"
12
- }
24
+ },
25
+ "scripts": {}
13
26
  }