@forzalabs/remora 1.2.9 → 1.2.11
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 +7 -0
- package/index.js +517 -301
- package/json_schemas/consumer-schema.json +4 -0
- package/package.json +1 -1
- package/workers/ExecutorWorker.js +513 -294
|
@@ -206,6 +206,10 @@
|
|
|
206
206
|
"type": "boolean",
|
|
207
207
|
"description": "If set, \"default\" must have a value. This field is not searched in the underlying dataset, but is a fixed value set by the \"default\" prop."
|
|
208
208
|
},
|
|
209
|
+
"lineCount": {
|
|
210
|
+
"type": "boolean",
|
|
211
|
+
"description": "If set, this field is populated with the 1-based source line number of the current record. For multi-worker file processing the final value is normalized during merge so it remains consistent across chunks."
|
|
212
|
+
},
|
|
209
213
|
"copyFrom": {
|
|
210
214
|
"type": "string",
|
|
211
215
|
"description": "If set, this field will be added as new to the consumer dataset and will be a copy of the specified field. Use the alias if set, otherwise the key. The source field should come before this field in the fields list."
|