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

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 +2 -2
  2. package/package.json +16 -3
package/index.d.ts CHANGED
@@ -22,7 +22,7 @@ declare interface AwsLiteCloudWatchLogs {
22
22
  * - AWS docs: {@link https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogGroups.html CloudWatch Logs: DescribeLogGroups}
23
23
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/cloudwatch-logs/readme.md#DescribeLogGroups CloudWatch Logs: DescribeLogGroups}
24
24
  */
25
- DescribeLogGroups: (input: { accountIdentifiers?: any[], logGroupNamePrefix?: string, logGroupNamePattern?: string, nextToken?: string, limit?: number, includeLinkedAccounts?: boolean, logGroupClass: string, paginate?: boolean }) => Promise<DescribeLogGroupsResponse>
25
+ DescribeLogGroups: (input: { accountIdentifiers?: any[], logGroupNamePrefix?: string, logGroupNamePattern?: string, nextToken?: string, limit?: number, includeLinkedAccounts?: boolean, logGroupClass?: string, paginate?: boolean }) => Promise<DescribeLogGroupsResponse>
26
26
  /**
27
27
  * @description
28
28
  * - AWS docs: {@link https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html CloudWatch Logs: DescribeLogStreams}
@@ -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.2",
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
  }