@netacea/kinesisingest 1.5.35 → 1.5.37

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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 1.5.37 (2024-05-16)
7
+
8
+ **Note:** Version bump only for package @netacea/kinesisingest
9
+
10
+
11
+
12
+
13
+
14
+ ## 1.5.36 (2024-05-15)
15
+
16
+ **Note:** Version bump only for package @netacea/kinesisingest
17
+
18
+
19
+
20
+
21
+
6
22
  ## 1.5.35 (2024-05-15)
7
23
 
8
24
  **Note:** Version bump only for package @netacea/kinesisingest
package/dist/AWS.d.ts CHANGED
@@ -1,7 +1,5 @@
1
1
  export interface SignedAwsRequest {
2
- headers: {
3
- [key: string]: string;
4
- };
2
+ headers: Record<string, string>;
5
3
  hostname: string;
6
4
  path: string;
7
5
  method: 'POST';
@@ -1,7 +1,5 @@
1
1
  export type KinesisMakeRequest = (args: {
2
- headers: {
3
- [key: string]: string;
4
- };
2
+ headers: Record<string, string>;
5
3
  method: 'POST' | 'GET';
6
4
  host: string;
7
5
  path: string;
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@netacea/kinesisingest",
3
- "version": "1.5.35",
3
+ "version": "1.5.37",
4
4
  "description": "Kinesis Ingest module for Netacea.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
- "test": "npx nyc tape -r ts-node/register -r tsconfig-paths/register './tests/*.test.ts'",
8
+ "test": "npx nyc tape -r ts-node/register './tests/*.test.ts'",
9
9
  "lint": "npx eslint . --ext ts",
10
10
  "lint:fix": "npx eslint . --ext ts --fix",
11
- "prepublishOnly": "npx tsc --project tsconfig.build.json"
11
+ "prepublishOnly": "npm run build",
12
+ "build": "npx tsc --project tsconfig.build.json"
12
13
  },
13
- "author": "Jack Scotson <jack.scotson@netacea.com> (https://netacea.com)",
14
+ "author": "Netacea <npm@netacea.com> (https://netacea.com)",
14
15
  "publishConfig": {
15
16
  "access": "public"
16
17
  },
@@ -24,11 +25,10 @@
24
25
  "sinon": "^9.1.0",
25
26
  "tape": "^5.0.1",
26
27
  "ts-node": "^9.0.0",
27
- "tsconfig-paths": "^3.9.0",
28
28
  "typescript": "^5.4.3"
29
29
  },
30
30
  "dependencies": {
31
31
  "aws4": "1.11.0"
32
32
  },
33
- "gitHead": "49d687b7028d4c880438ef8288d45437d2cea8df"
33
+ "gitHead": "398c01c89c8f25782e3c050c5a63ab9150129d18"
34
34
  }