@forzalabs/remora 0.1.7-nasco.3 → 0.1.8-nasco.3

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/Constants.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const CONSTANTS = {
4
- cliVersion: '0.1.7-nasco',
4
+ cliVersion: '0.1.8-nasco',
5
5
  lambdaVersion: 1,
6
6
  port: 5069,
7
7
  defaults: {
@@ -13,8 +13,8 @@ class ExecutionPlannerClas {
13
13
  switch (engine) {
14
14
  case 'aws-dynamodb': return 'no-sql';
15
15
  case 'aws-redshift':
16
- case 'delta-share':
17
16
  case 'postgres': return 'sql';
17
+ case 'delta-share':
18
18
  case 'aws-s3': return 'file';
19
19
  case 'local': return 'local';
20
20
  }
@@ -39,7 +39,7 @@ class ExecutionPlannerClas {
39
39
  plan.push({ type: 'apply-execution-request-to-result' });
40
40
  // TODO: test if it is needed and if it doesn't break soething else
41
41
  if (engineClass === 'sql')
42
- plan.push({ type: 'post-process-json' });
42
+ plan.push({ type: 'post-process-json', output });
43
43
  if ((_a = consumer.options) === null || _a === void 0 ? void 0 : _a.distinct)
44
44
  plan.push({ type: 'apply-consumer-distinct' });
45
45
  plan.push({ type: 'export-file', output });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forzalabs/remora",
3
- "version": "0.1.7-nasco.3",
3
+ "version": "0.1.8-nasco.3",
4
4
  "description": "A powerful CLI tool for seamless data translation.",
5
5
  "main": "index.js",
6
6
  "private": false,