@netacea/kinesisingest 1.4.0 → 1.4.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.
- package/CHANGELOG.md +16 -0
- package/README.md +11 -5
- package/package.json +2 -2
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.4.2 (2023-03-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @netacea/kinesisingest
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.4.1](https://github.com/Netacea/JavascriptATAIntegration/compare/@netacea/kinesisingest@1.4.0...@netacea/kinesisingest@1.4.1) (2022-05-26)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @netacea/kinesisingest
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [1.4.0](https://github.com/Netacea/JavascriptATAIntegration/compare/@netacea/kinesisingest@1.3.0...@netacea/kinesisingest@1.4.0) (2022-04-29)
|
|
7
23
|
|
|
8
24
|
|
package/README.md
CHANGED
|
@@ -1,22 +1,28 @@
|
|
|
1
1
|
# Netacea Kinesis Ingest
|
|
2
|
+
|
|
2
3
|

|
|
3
4
|
|
|
4
5
|
[](https://www.npmjs.com/package/@netacea/captchafeedback)
|
|
5
6
|
[](http://www.typescriptlang.org/)
|
|
6
7
|
|
|
7
|
-
`@netacea/kinesisingest` is a package designed to add [Netacea](https://netacea.com) Kinesis feedback functionality to your javascript based
|
|
8
|
+
`@netacea/kinesisingest` is a package designed to add [Netacea](https://netacea.com) Kinesis feedback functionality to your javascript based integration.
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
### NPM
|
|
8
13
|
|
|
9
|
-
# Installation
|
|
10
|
-
## NPM
|
|
11
14
|
```sh
|
|
12
15
|
npm i @netacea/kinesisingest --save
|
|
13
16
|
```
|
|
14
|
-
|
|
17
|
+
|
|
18
|
+
### Yarn
|
|
19
|
+
|
|
15
20
|
```sh
|
|
16
21
|
yarn add @netacea/kinesisingest
|
|
17
22
|
```
|
|
18
23
|
|
|
19
|
-
|
|
24
|
+
## Usage
|
|
25
|
+
|
|
20
26
|
```typescript
|
|
21
27
|
import NetaceaKinesis from '@netacea/kinesisingest'
|
|
22
28
|
const netacea = new NetaceaKinesis({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netacea/kinesisingest",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "Kinesis Ingest module for Netacea.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"aws4": "1.11.0"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "a15ab015691f5e8aceba57d76689917073f33d67"
|
|
33
33
|
}
|