@forzalabs/remora 0.0.26 → 0.0.27

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.0.26',
4
+ cliVersion: '0.0.27',
5
5
  lambdaVersion: 1,
6
6
  port: 5069,
7
7
  defaults: {
@@ -97,6 +97,10 @@
97
97
  "clusterId": {
98
98
  "type": "string",
99
99
  "description": "Redshift cluster identifier"
100
+ },
101
+ "path": {
102
+ "type": "string",
103
+ "description": "The folder path"
100
104
  }
101
105
  },
102
106
  "required": ["method"]
package/engines/ai/LLM.js CHANGED
@@ -202,14 +202,14 @@ class LLM {
202
202
  $schema: zod_2.z.string().describe('The schema of the producer. This should always be the same.'),
203
203
  name: zod_2.z.string(),
204
204
  description: zod_2.z.string(),
205
+ source: zod_2.z.string().describe('The name of the source linked to this producer.'),
206
+ settings: zod_2.z.object({
207
+ fileKey: zod_2.z.string().describe('The name of the file'),
208
+ fileType: zod_2.z.string().describe('The file extension (CSV | JSONL | JSON)')
209
+ }),
205
210
  dimensions: zod_2.z.array(zod_2.z.object({
206
211
  name: zod_2.z.string(),
207
212
  // alias: z.string().optional(),
208
- source: zod_2.z.string().describe('The name of the source linked to this producer.'),
209
- settings: zod_2.z.object({
210
- fileKey: zod_2.z.string().describe('The name of the file'),
211
- fileType: zod_2.z.string().describe('The file extension (CSV | JSONL | JSON)')
212
- }),
213
213
  description: zod_2.z.string().optional(),
214
214
  type: zod_2.z.enum(['string', 'number', 'datetime']),
215
215
  pk: zod_2.z.boolean().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forzalabs/remora",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "A powerful CLI tool for seamless data translation.",
5
5
  "main": "index.js",
6
6
  "private": false,