@engine9/input-tools 2.0.7 → 2.0.8
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/ForEachEntry.js +1 -1
- package/README.md +4 -3
- package/package.json +2 -2
- package/skills/transaction-mapping/SKILL.md +1 -1
package/ForEachEntry.js
CHANGED
|
@@ -12,7 +12,7 @@ import FileUtilities from './file/FileUtilities.js';
|
|
|
12
12
|
import { getTempFilename, getBatchTransform, getFile, streamPacket } from './file/tools.js';
|
|
13
13
|
const { Transform, Writable } = nodestream;
|
|
14
14
|
const { pipeline } = promises;
|
|
15
|
-
const debug = debug$0('@engine9
|
|
15
|
+
const debug = debug$0('@engine9/input-tools');
|
|
16
16
|
const debugThrottle = throttle(1000, debug, { noLeading: false, noTrailing: false });
|
|
17
17
|
class ForEachEntry {
|
|
18
18
|
constructor({ accountId } = {}) {
|
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# @engine9/input-tools
|
|
2
|
+
|
|
2
3
|
Tools for reading, writing, and management of Engine9 style inputs.
|
|
3
4
|
|
|
4
|
-
The @engine9
|
|
5
|
-
records, appending statistics and other zip files.
|
|
6
|
-
third parties to interact with engine9 instances.
|
|
5
|
+
The @engine9/input-tools are utilities for iterating through
|
|
6
|
+
records, appending statistics and other zip files. It's intended to be used by
|
|
7
|
+
third parties to interact with engine9 instances.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@engine9/input-tools",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Tools for dealing with Engine9 inputs",
|
|
6
6
|
"main": "index.js",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"author": "Engine9",
|
|
12
12
|
"license": "GPL-3.0-or-later",
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"eslint": "^9.
|
|
14
|
+
"eslint": "^9.39.2"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@aws-sdk/client-s3": "^3.893.0",
|
|
@@ -43,7 +43,7 @@ Use this skill when writing a JavaScript function that maps 3rd-party payment or
|
|
|
43
43
|
|
|
44
44
|
## Transaction entry types
|
|
45
45
|
|
|
46
|
-
Use exactly these `entry_type` string values (or the numeric `entry_type_id`). Import `TIMELINE_ENTRY_TYPES` from `@engine9
|
|
46
|
+
Use exactly these `entry_type` string values (or the numeric `entry_type_id`). Import `TIMELINE_ENTRY_TYPES` from `@engine9/input-tools` for the full map.
|
|
47
47
|
|
|
48
48
|
| entry_type | entry_type_id | Use when |
|
|
49
49
|
| ------------------------ | ------------- | ------------------------------------------------------------ |
|