@event-driven-io/pongo 0.16.10 → 0.16.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/dist/{chunk-NBYHLHUE.js → chunk-BCK2M3QD.js} +1 -1
- package/dist/chunk-BCK2M3QD.js.map +1 -0
- package/dist/{chunk-3K7LHO2P.cjs → chunk-PZIZKSMQ.cjs} +1 -1
- package/dist/{chunk-3K7LHO2P.cjs.map → chunk-PZIZKSMQ.cjs.map} +1 -1
- package/dist/cli.cjs +30 -25
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +20 -15
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/{pongoClient-CPRWZZzH.d.cts → pongoClient-kJ3Z8DcU.d.cts} +1 -0
- package/dist/{pongoClient-CPRWZZzH.d.ts → pongoClient-kJ3Z8DcU.d.ts} +1 -0
- package/dist/shim.cjs +4 -4
- package/dist/shim.d.cts +1 -1
- package/dist/shim.d.ts +1 -1
- package/dist/shim.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-NBYHLHUE.js.map +0 -1
package/dist/cli.cjs
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkPZIZKSMQcjs = require('./chunk-PZIZKSMQ.cjs');
|
|
9
9
|
|
|
10
10
|
// src/cli.ts
|
|
11
11
|
var _commander = require('commander');
|
|
@@ -92,7 +92,7 @@ var parseDefaultDbSchema = (imported) => {
|
|
|
92
92
|
if (!imported.default.schema.dbs) {
|
|
93
93
|
return missingDbs;
|
|
94
94
|
}
|
|
95
|
-
const dbs =
|
|
95
|
+
const dbs = _chunkPZIZKSMQcjs.objectEntries.call(void 0, imported.default.schema.dbs).map((db) => db[1]);
|
|
96
96
|
const defaultDb = dbs.find((db) => db.name === void 0);
|
|
97
97
|
if (!defaultDb) {
|
|
98
98
|
return missingDefaultDb;
|
|
@@ -100,17 +100,17 @@ var parseDefaultDbSchema = (imported) => {
|
|
|
100
100
|
if (!defaultDb.collections) {
|
|
101
101
|
return missingCollections;
|
|
102
102
|
}
|
|
103
|
-
const collections =
|
|
103
|
+
const collections = _chunkPZIZKSMQcjs.objectEntries.call(void 0, defaultDb.collections).map((col) => col[1]);
|
|
104
104
|
if (collections.length === 0) {
|
|
105
105
|
return missingCollections;
|
|
106
106
|
}
|
|
107
|
-
return
|
|
107
|
+
return _chunkPZIZKSMQcjs.toDbSchemaMetadata.call(void 0, defaultDb);
|
|
108
108
|
};
|
|
109
109
|
var configCommand = new (0, _commander.Command)("config").description(
|
|
110
110
|
"Manage Pongo configuration"
|
|
111
111
|
);
|
|
112
112
|
configCommand.command("sample").description("Generate or print sample configuration").option(
|
|
113
|
-
"
|
|
113
|
+
"--col, --collection <name>",
|
|
114
114
|
"Specify the collection name",
|
|
115
115
|
(value, previous) => {
|
|
116
116
|
return previous.concat([value]);
|
|
@@ -152,17 +152,21 @@ var migrateCommand = new (0, _commander.Command)("migrate").description(
|
|
|
152
152
|
"Manage database migrations"
|
|
153
153
|
);
|
|
154
154
|
migrateCommand.command("run").description("Run database migrations").option(
|
|
155
|
-
"
|
|
155
|
+
"--cs, --connection-string <string>",
|
|
156
156
|
"Connection string for the database"
|
|
157
157
|
).option(
|
|
158
|
-
"
|
|
158
|
+
"--col, --collection <name>",
|
|
159
159
|
"Specify the collection name",
|
|
160
160
|
(value, previous) => {
|
|
161
161
|
return previous.concat([value]);
|
|
162
162
|
},
|
|
163
163
|
[]
|
|
164
|
-
).option("-f, --config <path>", "Path to configuration file with Pongo config").option("
|
|
165
|
-
|
|
164
|
+
).option("-f, --config <path>", "Path to configuration file with Pongo config").option("--dr, --dryRun", "Perform dry run without commiting changes", false).option(
|
|
165
|
+
"--t, --timeout <ms>",
|
|
166
|
+
"Set the migration timeout in milliseconds",
|
|
167
|
+
parseInt
|
|
168
|
+
).action(async (options) => {
|
|
169
|
+
const { collection, dryRun, timeoutMs } = options;
|
|
166
170
|
const connectionString = _nullishCoalesce(options.connectionString, () => ( process.env.DB_CONNECTION_STRING));
|
|
167
171
|
let collectionNames;
|
|
168
172
|
if (!connectionString) {
|
|
@@ -184,17 +188,18 @@ migrateCommand.command("run").description("Run database migrations").option(
|
|
|
184
188
|
}
|
|
185
189
|
const pool = _dumbo.dumbo.call(void 0, { connectionString });
|
|
186
190
|
const migrations = collectionNames.flatMap(
|
|
187
|
-
(collectionsName) =>
|
|
191
|
+
(collectionsName) => _chunkPZIZKSMQcjs.pongoCollectionSchemaComponent.call(void 0, collectionsName).migrations({
|
|
188
192
|
connector: "PostgreSQL:pg"
|
|
189
193
|
// TODO: Provide connector here
|
|
190
194
|
})
|
|
191
195
|
);
|
|
192
196
|
await _dumbo.runPostgreSQLMigrations.call(void 0, pool, migrations, {
|
|
193
|
-
dryRun
|
|
197
|
+
dryRun,
|
|
198
|
+
migrationTimeoutMs: timeoutMs
|
|
194
199
|
});
|
|
195
200
|
});
|
|
196
201
|
migrateCommand.command("sql").description("Generate SQL for database migration").option(
|
|
197
|
-
"
|
|
202
|
+
"--col, --collection <name>",
|
|
198
203
|
"Specify the collection name",
|
|
199
204
|
(value, previous) => {
|
|
200
205
|
return previous.concat([value]);
|
|
@@ -220,7 +225,7 @@ migrateCommand.command("sql").description("Generate SQL for database migration")
|
|
|
220
225
|
const migrations = [
|
|
221
226
|
...coreMigrations,
|
|
222
227
|
...collectionNames.flatMap(
|
|
223
|
-
(collectionName) =>
|
|
228
|
+
(collectionName) => _chunkPZIZKSMQcjs.pongoCollectionSchemaComponent.call(void 0, collectionName).migrations({
|
|
224
229
|
connector: "PostgreSQL:pg"
|
|
225
230
|
// TODO: Provide connector here
|
|
226
231
|
})
|
|
@@ -310,7 +315,7 @@ var prettifyLogs = (logLevel) => {
|
|
|
310
315
|
var startRepl = async (options) => {
|
|
311
316
|
setLogLevel(_nullishCoalesce(process.env.DUMBO_LOG_LEVEL, () => ( options.logging.logLevel)));
|
|
312
317
|
setLogStyle(_nullishCoalesce(process.env.DUMBO_LOG_STYLE, () => ( options.logging.logStyle)));
|
|
313
|
-
console.log(_dumbo.color.green("Starting Pongo Shell (version: 0.16.
|
|
318
|
+
console.log(_dumbo.color.green("Starting Pongo Shell (version: 0.16.11)"));
|
|
314
319
|
if (options.logging.printOptions) {
|
|
315
320
|
console.log(_dumbo.color.green("With Options:"));
|
|
316
321
|
console.log(_dumbo.prettyJson.call(void 0, options));
|
|
@@ -355,12 +360,12 @@ var startRepl = async (options) => {
|
|
|
355
360
|
if (options.schema.collections.length > 0) {
|
|
356
361
|
const collectionsSchema = {};
|
|
357
362
|
for (const collectionName of options.schema.collections) {
|
|
358
|
-
collectionsSchema[collectionName] =
|
|
363
|
+
collectionsSchema[collectionName] = _chunkPZIZKSMQcjs.pongoSchema.collection(collectionName);
|
|
359
364
|
}
|
|
360
|
-
const schema =
|
|
361
|
-
database:
|
|
365
|
+
const schema = _chunkPZIZKSMQcjs.pongoSchema.client({
|
|
366
|
+
database: _chunkPZIZKSMQcjs.pongoSchema.db(options.schema.database, collectionsSchema)
|
|
362
367
|
});
|
|
363
|
-
const typedClient =
|
|
368
|
+
const typedClient = _chunkPZIZKSMQcjs.pongoClient.call(void 0, connectionString, {
|
|
364
369
|
schema: {
|
|
365
370
|
definition: schema,
|
|
366
371
|
autoMigration: options.schema.autoMigration
|
|
@@ -372,7 +377,7 @@ var startRepl = async (options) => {
|
|
|
372
377
|
}
|
|
373
378
|
pongo = typedClient;
|
|
374
379
|
} else {
|
|
375
|
-
pongo =
|
|
380
|
+
pongo = _chunkPZIZKSMQcjs.pongoClient.call(void 0, connectionString, {
|
|
376
381
|
schema: { autoMigration: options.schema.autoMigration }
|
|
377
382
|
});
|
|
378
383
|
db = pongo.db(options.schema.database);
|
|
@@ -402,23 +407,23 @@ var teardown = async () => {
|
|
|
402
407
|
process.on("uncaughtException", teardown);
|
|
403
408
|
process.on("SIGINT", teardown);
|
|
404
409
|
var shellCommand = new (0, _commander.Command)("shell").description("Start an interactive Pongo shell").option(
|
|
405
|
-
"
|
|
410
|
+
"--cs, --connectionString <string>",
|
|
406
411
|
"Connection string for the database"
|
|
407
|
-
).option("
|
|
408
|
-
"
|
|
412
|
+
).option("--db, --database <string>", "Database name to connect", "postgres").option(
|
|
413
|
+
"--col, --collection <name>",
|
|
409
414
|
"Specify the collection name",
|
|
410
415
|
(value, previous) => {
|
|
411
416
|
return previous.concat([value]);
|
|
412
417
|
},
|
|
413
418
|
[]
|
|
414
419
|
).option(
|
|
415
|
-
"
|
|
420
|
+
"--no-migrations, --disable-auto-migrations",
|
|
416
421
|
"Disable automatic migrations"
|
|
417
422
|
).option("-o, --print-options", "Print shell options").option(
|
|
418
|
-
"
|
|
423
|
+
"--ll, --log-level <logLevel>",
|
|
419
424
|
"Log level: DISABLED, INFO, LOG, WARN, ERROR",
|
|
420
425
|
"DISABLED"
|
|
421
|
-
).option("
|
|
426
|
+
).option("--ls, --log-style", "Log style: RAW, PRETTY", "RAW").option("-p, --pretty-log", "Turn on logging with prettified output").action(async (options) => {
|
|
422
427
|
const { collection, database } = options;
|
|
423
428
|
const connectionString = options.connectionString;
|
|
424
429
|
await startRepl({
|
package/dist/cli.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/Pongo/Pongo/src/packages/pongo/dist/cli.cjs","../src/cli.ts","../src/commandLine/configFile.ts","../src/commandLine/migrate.ts","../src/commandLine/shell.ts"],"names":[],"mappings":"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","file":"/home/runner/work/Pongo/Pongo/src/packages/pongo/dist/cli.cjs","sourcesContent":[null,"#!/usr/bin/env node\nimport { Command } from 'commander';\nimport { configCommand, migrateCommand, shellCommand } from './commandLine';\n\nconst program = new Command();\n\nprogram.name('pongo').description('CLI tool for Pongo');\n\nprogram.addCommand(configCommand);\nprogram.addCommand(migrateCommand);\nprogram.addCommand(shellCommand);\n\nprogram.parse(process.argv);\n\nexport default program;\n","import { Command } from 'commander';\nimport fs from 'node:fs';\nimport {\n objectEntries,\n toDbSchemaMetadata,\n type PongoDbSchemaMetadata,\n type PongoSchemaConfig,\n} from '../core';\n\nconst formatTypeName = (input: string): string => {\n if (input.length === 0) {\n return input;\n }\n\n let formatted = input.charAt(0).toUpperCase() + input.slice(1);\n\n if (formatted.endsWith('s')) {\n formatted = formatted.slice(0, -1);\n }\n\n return formatted;\n};\n\nconst sampleConfig = (collectionNames: string[] = ['users']) => {\n const types = collectionNames\n .map(\n (name) =>\n `export type ${formatTypeName(name)} = { name: string; description: string; date: Date }`,\n )\n .join('\\n');\n\n const collections = collectionNames\n .map(\n (name) =>\n ` ${name}: pongoSchema.collection<${formatTypeName(name)}>('${name}'),`,\n )\n .join('\\n');\n\n return `import { pongoSchema } from '@event-driven-io/pongo';\n\n${types}\n\nexport default {\n schema: pongoSchema.client({\n database: pongoSchema.db({\n${collections}\n }),\n }),\n};`;\n};\n\nconst missingDefaultExport = `Error: Config should contain default export, e.g.\\n\\n${sampleConfig()}`;\nconst missingSchema = `Error: Config should contain schema property, e.g.\\n\\n${sampleConfig()}`;\nconst missingDbs = `Error: Config should have at least a single database defined, e.g.\\n\\n${sampleConfig()}`;\nconst missingDefaultDb = `Error: Config should have a default database defined (without name or or with default database name), e.g.\\n\\n${sampleConfig()}`;\nconst missingCollections = `Error: Database should have defined at least one collection, e.g.\\n\\n${sampleConfig()}`;\n\nexport const loadConfigFile = async (\n configPath: string,\n): Promise<PongoDbSchemaMetadata> => {\n const configUrl = new URL(configPath, `file://${process.cwd()}/`);\n try {\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n const imported: Partial<{ default: PongoSchemaConfig }> = await import(\n configUrl.href\n );\n\n const parsed = parseDefaultDbSchema(imported);\n\n if (typeof parsed === 'string') {\n console.error(parsed);\n process.exit(1);\n }\n\n return parsed;\n } catch {\n console.error(`Error: Couldn't load file: ${configUrl.href}`);\n process.exit(1);\n }\n};\n\nexport const generateConfigFile = (\n configPath: string,\n collectionNames: string[],\n): void => {\n try {\n fs.writeFileSync(configPath, sampleConfig(collectionNames), 'utf8');\n console.log(`Configuration file stored at: ${configPath}`);\n } catch (error) {\n console.error(`Error: Couldn't store config file: ${configPath}!`);\n console.error(error);\n process.exit(1);\n }\n};\n\nexport const parseDefaultDbSchema = (\n imported: Partial<{ default: PongoSchemaConfig }>,\n): PongoDbSchemaMetadata | string => {\n if (!imported.default) {\n return missingDefaultExport;\n }\n\n if (!imported.default.schema) {\n return missingSchema;\n }\n\n if (!imported.default.schema.dbs) {\n return missingDbs;\n }\n\n const dbs = objectEntries(imported.default.schema.dbs).map((db) => db[1]);\n\n const defaultDb = dbs.find((db) => db.name === undefined);\n\n if (!defaultDb) {\n return missingDefaultDb;\n }\n\n if (!defaultDb.collections) {\n return missingCollections;\n }\n\n const collections = objectEntries(defaultDb.collections).map((col) => col[1]);\n\n if (collections.length === 0) {\n return missingCollections;\n }\n\n return toDbSchemaMetadata(defaultDb);\n};\n\ntype SampleConfigOptions =\n | {\n collection: string[];\n print?: boolean;\n }\n | {\n collection: string[];\n generate?: boolean;\n file?: string;\n };\n\nexport const configCommand = new Command('config').description(\n 'Manage Pongo configuration',\n);\n\nconfigCommand\n .command('sample')\n .description('Generate or print sample configuration')\n .option(\n '-col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option(\n '-f, --file <path>',\n 'Path to configuration file with collection list',\n )\n .option('-g, --generate', 'Generate sample config file')\n .option('-p, --print', 'Print sample config file')\n .action((options: SampleConfigOptions) => {\n const collectionNames =\n options.collection.length > 0 ? options.collection : ['users'];\n\n if (!('print' in options) && !('generate' in options)) {\n console.error(\n 'Error: Please provide either:\\n--print param to print sample config or\\n--generate to generate sample config file',\n );\n process.exit(1);\n }\n\n if ('print' in options) {\n console.log(`${sampleConfig(collectionNames)}`);\n } else if ('generate' in options) {\n if (!options.file) {\n console.error(\n 'Error: You need to provide a config file through a --file',\n );\n process.exit(1);\n }\n\n generateConfigFile(options.file, collectionNames);\n }\n });\n","import {\n combineMigrations,\n dumbo,\n migrationTableSchemaComponent,\n runPostgreSQLMigrations,\n} from '@event-driven-io/dumbo';\nimport { Command } from 'commander';\nimport { pongoCollectionSchemaComponent } from '../core';\nimport { loadConfigFile } from './configFile';\n\ninterface MigrateRunOptions {\n collection: string[];\n connectionString: string;\n config?: string;\n dryRun?: boolean;\n}\n\ninterface MigrateSqlOptions {\n print?: boolean;\n write?: string;\n config?: string;\n collection: string[];\n}\n\nexport const migrateCommand = new Command('migrate').description(\n 'Manage database migrations',\n);\n\nmigrateCommand\n .command('run')\n .description('Run database migrations')\n .option(\n '-cs, --connection-string <string>',\n 'Connection string for the database',\n )\n .option(\n '-col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option('-f, --config <path>', 'Path to configuration file with Pongo config')\n .option('-dr, --dryRun', 'Perform dry run without commiting changes', false)\n .action(async (options: MigrateRunOptions) => {\n const { collection, dryRun } = options;\n const connectionString =\n options.connectionString ?? process.env.DB_CONNECTION_STRING;\n let collectionNames: string[];\n\n if (!connectionString) {\n console.error(\n 'Error: Connection string is required. Provide it either as a \"--connection-string\" parameter or through the DB_CONNECTION_STRING environment variable.' +\n '\\nFor instance: --connection-string postgresql://postgres:postgres@localhost:5432/postgres',\n );\n process.exit(1);\n }\n\n if (options.config) {\n const config = await loadConfigFile(options.config);\n\n collectionNames = config.collections.map((c) => c.name);\n } else if (collection) {\n collectionNames = collection;\n } else {\n console.error(\n 'Error: You need to provide at least one collection name. Provide it either through \"--config\" file or as a \"--collection\" parameter.',\n );\n process.exit(1);\n }\n\n const pool = dumbo({ connectionString });\n\n const migrations = collectionNames.flatMap((collectionsName) =>\n pongoCollectionSchemaComponent(collectionsName).migrations({\n connector: 'PostgreSQL:pg', // TODO: Provide connector here\n }),\n );\n\n await runPostgreSQLMigrations(pool, migrations, {\n dryRun,\n });\n });\n\nmigrateCommand\n .command('sql')\n .description('Generate SQL for database migration')\n .option(\n '-col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option('-f, --config <path>', 'Path to configuration file with Pongo config')\n .option('--print', 'Print the SQL to the console (default)', true)\n //.option('--write <filename>', 'Write the SQL to a specified file')\n .action(async (options: MigrateSqlOptions) => {\n const { collection } = options;\n\n let collectionNames: string[];\n\n if (options.config) {\n const config = await loadConfigFile(options.config);\n\n collectionNames = config.collections.map((c) => c.name);\n } else if (collection) {\n collectionNames = collection;\n } else {\n console.error(\n 'Error: You need to provide at least one collection name. Provide it either through \"--config\" file or as a \"--collection\" parameter.',\n );\n process.exit(1);\n }\n\n const coreMigrations = migrationTableSchemaComponent.migrations({\n connector: 'PostgreSQL:pg',\n });\n const migrations = [\n ...coreMigrations,\n ...collectionNames.flatMap((collectionName) =>\n pongoCollectionSchemaComponent(collectionName).migrations({\n connector: 'PostgreSQL:pg', // TODO: Provide connector here\n }),\n ),\n ];\n\n console.log('Printing SQL:');\n console.log(combineMigrations(...migrations));\n });\n","import {\n checkConnection,\n color,\n LogLevel,\n LogStyle,\n prettyJson,\n SQL,\n type MigrationStyle,\n} from '@event-driven-io/dumbo';\nimport Table from 'cli-table3';\nimport { Command } from 'commander';\nimport repl from 'node:repl';\nimport {\n pongoClient,\n pongoSchema,\n type PongoClient,\n type PongoCollectionSchema,\n type PongoDb,\n} from '../core';\n\nlet pongo: PongoClient;\n\nconst calculateColumnWidths = (\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n results: any[],\n columnNames: string[],\n): number[] => {\n const columnWidths = columnNames.map((col) => {\n const maxWidth = Math.max(\n col.length, // Header size\n ...results.map((result) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n result[col] ? String(result[col]).length : 0,\n ),\n );\n return maxWidth + 2; // Add padding\n });\n return columnWidths;\n};\n\nlet shouldDisplayResultsAsTable = false;\n\nconst printResultsAsTable = (print?: boolean) =>\n (shouldDisplayResultsAsTable = print === undefined || print === true);\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst printOutput = (obj: any): string =>\n Array.isArray(obj) && shouldDisplayResultsAsTable\n ? displayResultsAsTable(obj)\n : prettyJson(obj);\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst displayResultsAsTable = (results: any[]): string => {\n if (results.length === 0) {\n return color.yellow('No documents found.');\n }\n\n const columnNames = results\n\n .flatMap((result) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument\n typeof result === 'object' ? Object.keys(result) : typeof result,\n )\n .filter((value, index, array) => array.indexOf(value) === index);\n\n const columnWidths = calculateColumnWidths(results, columnNames);\n\n const table = new Table({\n head: columnNames.map((col) => color.cyan(col)),\n colWidths: columnWidths,\n });\n\n results.forEach((result) => {\n table.push(\n columnNames.map((col) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n result[col] !== undefined\n ? // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n Array.isArray(result[col])\n ? // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n displayResultsAsTable(result[col])\n : // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n prettyJson(result[col])\n : typeof result === 'object'\n ? ''\n : result != undefined && result != undefined\n ? prettyJson(result)\n : '',\n ),\n );\n });\n\n return table.toString();\n};\n\nconst setLogLevel = (logLevel: string) => {\n process.env.DUMBO_LOG_LEVEL = logLevel;\n};\n\nconst setLogStyle = (logLevel: string) => {\n process.env.DUMBO_LOG_STYLE = logLevel;\n};\n\nconst prettifyLogs = (logLevel?: string) => {\n if (logLevel !== undefined) setLogLevel(logLevel);\n setLogStyle(LogStyle.PRETTY);\n};\n\nconst startRepl = async (options: {\n logging: {\n printOptions: boolean;\n logLevel: LogLevel;\n logStyle: LogStyle;\n };\n schema: {\n database: string;\n collections: string[];\n autoMigration: MigrationStyle;\n };\n connectionString: string | undefined;\n}) => {\n // TODO: This will change when we have proper tracing and logging config\n // For now, that's enough\n setLogLevel(process.env.DUMBO_LOG_LEVEL ?? options.logging.logLevel);\n setLogStyle(process.env.DUMBO_LOG_STYLE ?? options.logging.logStyle);\n\n console.log(color.green('Starting Pongo Shell (version: 0.16.10)'));\n\n if (options.logging.printOptions) {\n console.log(color.green('With Options:'));\n console.log(prettyJson(options));\n }\n\n const connectionString =\n options.connectionString ??\n process.env.DB_CONNECTION_STRING ??\n 'postgresql://postgres:postgres@localhost:5432/postgres';\n\n if (!(options.connectionString ?? process.env.DB_CONNECTION_STRING)) {\n console.log(\n color.yellow(\n `No connection string provided, using: 'postgresql://postgres:postgres@localhost:5432/postgres'`,\n ),\n );\n }\n\n const connectionCheck = await checkConnection(connectionString);\n\n if (!connectionCheck.successful) {\n if (connectionCheck.errorType === 'ConnectionRefused') {\n console.error(\n color.red(\n `Connection was refused. Check if the PostgreSQL server is running and accessible.`,\n ),\n );\n } else if (connectionCheck.errorType === 'Authentication') {\n console.error(\n color.red(\n `Authentication failed. Check the username and password in the connection string.`,\n ),\n );\n } else {\n console.error(color.red('Error connecting to PostgreSQL server'));\n }\n console.log(color.red('Exiting Pongo Shell...'));\n process.exit();\n }\n\n console.log(color.green(`Successfully connected`));\n console.log(color.green('Use db.<collection>.<method>() to query.'));\n\n const shell = repl.start({\n prompt: color.green('pongo> '),\n useGlobal: true,\n breakEvalOnSigint: true,\n writer: printOutput,\n });\n\n let db: PongoDb;\n\n if (options.schema.collections.length > 0) {\n const collectionsSchema: Record<string, PongoCollectionSchema> = {};\n\n for (const collectionName of options.schema.collections) {\n collectionsSchema[collectionName] =\n pongoSchema.collection(collectionName);\n }\n\n const schema = pongoSchema.client({\n database: pongoSchema.db(options.schema.database, collectionsSchema),\n });\n\n const typedClient = pongoClient(connectionString, {\n schema: {\n definition: schema,\n autoMigration: options.schema.autoMigration,\n },\n });\n\n db = typedClient.database;\n\n for (const collectionName of options.schema.collections) {\n shell.context[collectionName] = typedClient.database[collectionName];\n }\n\n pongo = typedClient;\n } else {\n pongo = pongoClient(connectionString, {\n schema: { autoMigration: options.schema.autoMigration },\n });\n\n db = pongo.db(options.schema.database);\n }\n\n shell.context.pongo = pongo;\n shell.context.db = db;\n\n // helpers\n shell.context.SQL = SQL;\n shell.context.setLogLevel = setLogLevel;\n shell.context.setLogStyle = setLogStyle;\n shell.context.prettifyLogs = prettifyLogs;\n shell.context.printResultsAsTable = printResultsAsTable;\n shell.context.LogStyle = LogStyle;\n shell.context.LogLevel = LogLevel;\n\n // Intercept REPL output to display results as a table if they are arrays\n shell.on('exit', async () => {\n await teardown();\n process.exit();\n });\n\n shell.on('SIGINT', async () => {\n await teardown();\n process.exit();\n });\n};\n\nconst teardown = async () => {\n console.log(color.yellow('Exiting Pongo Shell...'));\n await pongo.close();\n};\n\nprocess.on('uncaughtException', teardown);\nprocess.on('SIGINT', teardown);\n\ninterface ShellOptions {\n database: string;\n collection: string[];\n connectionString?: string;\n disableAutoMigrations: boolean;\n logStyle?: string;\n logLevel?: string;\n prettyLog?: boolean;\n printOptions?: boolean;\n}\n\nconst shellCommand = new Command('shell')\n .description('Start an interactive Pongo shell')\n .option(\n '-cs, --connectionString <string>',\n 'Connection string for the database',\n )\n .option('-db, --database <string>', 'Database name to connect', 'postgres')\n .option(\n '-col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option(\n '-no-migrations, --disable-auto-migrations',\n 'Disable automatic migrations',\n )\n .option('-o, --print-options', 'Print shell options')\n .option(\n '-ll, --log-level <logLevel>',\n 'Log level: DISABLED, INFO, LOG, WARN, ERROR',\n 'DISABLED',\n )\n .option('-ls, --log-style', 'Log style: RAW, PRETTY', 'RAW')\n .option('-p, --pretty-log', 'Turn on logging with prettified output')\n .action(async (options: ShellOptions) => {\n const { collection, database } = options;\n const connectionString = options.connectionString;\n\n await startRepl({\n logging: {\n printOptions: options.printOptions === true,\n logStyle: options.prettyLog\n ? LogStyle.PRETTY\n : ((options.logStyle as LogStyle | undefined) ?? LogStyle.RAW),\n logLevel: options.logLevel\n ? (options.logLevel as LogLevel)\n : options.prettyLog\n ? LogLevel.INFO\n : LogLevel.DISABLED,\n },\n schema: {\n collections: collection,\n database,\n autoMigration: options.disableAutoMigrations\n ? 'None'\n : 'CreateOrUpdate',\n },\n connectionString,\n });\n });\n\nexport { shellCommand };\n"]}
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/Pongo/Pongo/src/packages/pongo/dist/cli.cjs","../src/cli.ts","../src/commandLine/configFile.ts","../src/commandLine/migrate.ts","../src/commandLine/shell.ts"],"names":[],"mappings":"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","file":"/home/runner/work/Pongo/Pongo/src/packages/pongo/dist/cli.cjs","sourcesContent":[null,"#!/usr/bin/env node\nimport { Command } from 'commander';\nimport { configCommand, migrateCommand, shellCommand } from './commandLine';\n\nconst program = new Command();\n\nprogram.name('pongo').description('CLI tool for Pongo');\n\nprogram.addCommand(configCommand);\nprogram.addCommand(migrateCommand);\nprogram.addCommand(shellCommand);\n\nprogram.parse(process.argv);\n\nexport default program;\n","import { Command } from 'commander';\nimport fs from 'node:fs';\nimport {\n objectEntries,\n toDbSchemaMetadata,\n type PongoDbSchemaMetadata,\n type PongoSchemaConfig,\n} from '../core';\n\nconst formatTypeName = (input: string): string => {\n if (input.length === 0) {\n return input;\n }\n\n let formatted = input.charAt(0).toUpperCase() + input.slice(1);\n\n if (formatted.endsWith('s')) {\n formatted = formatted.slice(0, -1);\n }\n\n return formatted;\n};\n\nconst sampleConfig = (collectionNames: string[] = ['users']) => {\n const types = collectionNames\n .map(\n (name) =>\n `export type ${formatTypeName(name)} = { name: string; description: string; date: Date }`,\n )\n .join('\\n');\n\n const collections = collectionNames\n .map(\n (name) =>\n ` ${name}: pongoSchema.collection<${formatTypeName(name)}>('${name}'),`,\n )\n .join('\\n');\n\n return `import { pongoSchema } from '@event-driven-io/pongo';\n\n${types}\n\nexport default {\n schema: pongoSchema.client({\n database: pongoSchema.db({\n${collections}\n }),\n }),\n};`;\n};\n\nconst missingDefaultExport = `Error: Config should contain default export, e.g.\\n\\n${sampleConfig()}`;\nconst missingSchema = `Error: Config should contain schema property, e.g.\\n\\n${sampleConfig()}`;\nconst missingDbs = `Error: Config should have at least a single database defined, e.g.\\n\\n${sampleConfig()}`;\nconst missingDefaultDb = `Error: Config should have a default database defined (without name or or with default database name), e.g.\\n\\n${sampleConfig()}`;\nconst missingCollections = `Error: Database should have defined at least one collection, e.g.\\n\\n${sampleConfig()}`;\n\nexport const loadConfigFile = async (\n configPath: string,\n): Promise<PongoDbSchemaMetadata> => {\n const configUrl = new URL(configPath, `file://${process.cwd()}/`);\n try {\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n const imported: Partial<{ default: PongoSchemaConfig }> = await import(\n configUrl.href\n );\n\n const parsed = parseDefaultDbSchema(imported);\n\n if (typeof parsed === 'string') {\n console.error(parsed);\n process.exit(1);\n }\n\n return parsed;\n } catch {\n console.error(`Error: Couldn't load file: ${configUrl.href}`);\n process.exit(1);\n }\n};\n\nexport const generateConfigFile = (\n configPath: string,\n collectionNames: string[],\n): void => {\n try {\n fs.writeFileSync(configPath, sampleConfig(collectionNames), 'utf8');\n console.log(`Configuration file stored at: ${configPath}`);\n } catch (error) {\n console.error(`Error: Couldn't store config file: ${configPath}!`);\n console.error(error);\n process.exit(1);\n }\n};\n\nexport const parseDefaultDbSchema = (\n imported: Partial<{ default: PongoSchemaConfig }>,\n): PongoDbSchemaMetadata | string => {\n if (!imported.default) {\n return missingDefaultExport;\n }\n\n if (!imported.default.schema) {\n return missingSchema;\n }\n\n if (!imported.default.schema.dbs) {\n return missingDbs;\n }\n\n const dbs = objectEntries(imported.default.schema.dbs).map((db) => db[1]);\n\n const defaultDb = dbs.find((db) => db.name === undefined);\n\n if (!defaultDb) {\n return missingDefaultDb;\n }\n\n if (!defaultDb.collections) {\n return missingCollections;\n }\n\n const collections = objectEntries(defaultDb.collections).map((col) => col[1]);\n\n if (collections.length === 0) {\n return missingCollections;\n }\n\n return toDbSchemaMetadata(defaultDb);\n};\n\ntype SampleConfigOptions =\n | {\n collection: string[];\n print?: boolean;\n }\n | {\n collection: string[];\n generate?: boolean;\n file?: string;\n };\n\nexport const configCommand = new Command('config').description(\n 'Manage Pongo configuration',\n);\n\nconfigCommand\n .command('sample')\n .description('Generate or print sample configuration')\n .option(\n '--col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option(\n '-f, --file <path>',\n 'Path to configuration file with collection list',\n )\n .option('-g, --generate', 'Generate sample config file')\n .option('-p, --print', 'Print sample config file')\n .action((options: SampleConfigOptions) => {\n const collectionNames =\n options.collection.length > 0 ? options.collection : ['users'];\n\n if (!('print' in options) && !('generate' in options)) {\n console.error(\n 'Error: Please provide either:\\n--print param to print sample config or\\n--generate to generate sample config file',\n );\n process.exit(1);\n }\n\n if ('print' in options) {\n console.log(`${sampleConfig(collectionNames)}`);\n } else if ('generate' in options) {\n if (!options.file) {\n console.error(\n 'Error: You need to provide a config file through a --file',\n );\n process.exit(1);\n }\n\n generateConfigFile(options.file, collectionNames);\n }\n });\n","import {\n combineMigrations,\n dumbo,\n migrationTableSchemaComponent,\n runPostgreSQLMigrations,\n} from '@event-driven-io/dumbo';\nimport { Command } from 'commander';\nimport { pongoCollectionSchemaComponent } from '../core';\nimport { loadConfigFile } from './configFile';\n\ninterface MigrateRunOptions {\n collection: string[];\n connectionString: string;\n config?: string;\n dryRun?: boolean;\n timeoutMs?: number;\n}\n\ninterface MigrateSqlOptions {\n print?: boolean;\n write?: string;\n config?: string;\n collection: string[];\n}\n\nexport const migrateCommand = new Command('migrate').description(\n 'Manage database migrations',\n);\n\nmigrateCommand\n .command('run')\n .description('Run database migrations')\n .option(\n '--cs, --connection-string <string>',\n 'Connection string for the database',\n )\n .option(\n '--col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option('-f, --config <path>', 'Path to configuration file with Pongo config')\n .option('--dr, --dryRun', 'Perform dry run without commiting changes', false)\n .option(\n '--t, --timeout <ms>',\n 'Set the migration timeout in milliseconds',\n parseInt,\n )\n .action(async (options: MigrateRunOptions) => {\n const { collection, dryRun, timeoutMs } = options;\n const connectionString =\n options.connectionString ?? process.env.DB_CONNECTION_STRING;\n let collectionNames: string[];\n\n if (!connectionString) {\n console.error(\n 'Error: Connection string is required. Provide it either as a \"--connection-string\" parameter or through the DB_CONNECTION_STRING environment variable.' +\n '\\nFor instance: --connection-string postgresql://postgres:postgres@localhost:5432/postgres',\n );\n process.exit(1);\n }\n\n if (options.config) {\n const config = await loadConfigFile(options.config);\n\n collectionNames = config.collections.map((c) => c.name);\n } else if (collection) {\n collectionNames = collection;\n } else {\n console.error(\n 'Error: You need to provide at least one collection name. Provide it either through \"--config\" file or as a \"--collection\" parameter.',\n );\n process.exit(1);\n }\n\n const pool = dumbo({ connectionString });\n\n const migrations = collectionNames.flatMap((collectionsName) =>\n pongoCollectionSchemaComponent(collectionsName).migrations({\n connector: 'PostgreSQL:pg', // TODO: Provide connector here\n }),\n );\n\n await runPostgreSQLMigrations(pool, migrations, {\n dryRun,\n migrationTimeoutMs: timeoutMs,\n });\n });\n\nmigrateCommand\n .command('sql')\n .description('Generate SQL for database migration')\n .option(\n '--col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option('-f, --config <path>', 'Path to configuration file with Pongo config')\n .option('--print', 'Print the SQL to the console (default)', true)\n //.option('--write <filename>', 'Write the SQL to a specified file')\n .action(async (options: MigrateSqlOptions) => {\n const { collection } = options;\n\n let collectionNames: string[];\n\n if (options.config) {\n const config = await loadConfigFile(options.config);\n\n collectionNames = config.collections.map((c) => c.name);\n } else if (collection) {\n collectionNames = collection;\n } else {\n console.error(\n 'Error: You need to provide at least one collection name. Provide it either through \"--config\" file or as a \"--collection\" parameter.',\n );\n process.exit(1);\n }\n\n const coreMigrations = migrationTableSchemaComponent.migrations({\n connector: 'PostgreSQL:pg',\n });\n const migrations = [\n ...coreMigrations,\n ...collectionNames.flatMap((collectionName) =>\n pongoCollectionSchemaComponent(collectionName).migrations({\n connector: 'PostgreSQL:pg', // TODO: Provide connector here\n }),\n ),\n ];\n\n console.log('Printing SQL:');\n console.log(combineMigrations(...migrations));\n });\n","import {\n checkConnection,\n color,\n LogLevel,\n LogStyle,\n prettyJson,\n SQL,\n type MigrationStyle,\n} from '@event-driven-io/dumbo';\nimport Table from 'cli-table3';\nimport { Command } from 'commander';\nimport repl from 'node:repl';\nimport {\n pongoClient,\n pongoSchema,\n type PongoClient,\n type PongoCollectionSchema,\n type PongoDb,\n} from '../core';\n\nlet pongo: PongoClient;\n\nconst calculateColumnWidths = (\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n results: any[],\n columnNames: string[],\n): number[] => {\n const columnWidths = columnNames.map((col) => {\n const maxWidth = Math.max(\n col.length, // Header size\n ...results.map((result) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n result[col] ? String(result[col]).length : 0,\n ),\n );\n return maxWidth + 2; // Add padding\n });\n return columnWidths;\n};\n\nlet shouldDisplayResultsAsTable = false;\n\nconst printResultsAsTable = (print?: boolean) =>\n (shouldDisplayResultsAsTable = print === undefined || print === true);\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst printOutput = (obj: any): string =>\n Array.isArray(obj) && shouldDisplayResultsAsTable\n ? displayResultsAsTable(obj)\n : prettyJson(obj);\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst displayResultsAsTable = (results: any[]): string => {\n if (results.length === 0) {\n return color.yellow('No documents found.');\n }\n\n const columnNames = results\n\n .flatMap((result) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument\n typeof result === 'object' ? Object.keys(result) : typeof result,\n )\n .filter((value, index, array) => array.indexOf(value) === index);\n\n const columnWidths = calculateColumnWidths(results, columnNames);\n\n const table = new Table({\n head: columnNames.map((col) => color.cyan(col)),\n colWidths: columnWidths,\n });\n\n results.forEach((result) => {\n table.push(\n columnNames.map((col) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n result[col] !== undefined\n ? // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n Array.isArray(result[col])\n ? // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n displayResultsAsTable(result[col])\n : // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n prettyJson(result[col])\n : typeof result === 'object'\n ? ''\n : result != undefined && result != undefined\n ? prettyJson(result)\n : '',\n ),\n );\n });\n\n return table.toString();\n};\n\nconst setLogLevel = (logLevel: string) => {\n process.env.DUMBO_LOG_LEVEL = logLevel;\n};\n\nconst setLogStyle = (logLevel: string) => {\n process.env.DUMBO_LOG_STYLE = logLevel;\n};\n\nconst prettifyLogs = (logLevel?: string) => {\n if (logLevel !== undefined) setLogLevel(logLevel);\n setLogStyle(LogStyle.PRETTY);\n};\n\nconst startRepl = async (options: {\n logging: {\n printOptions: boolean;\n logLevel: LogLevel;\n logStyle: LogStyle;\n };\n schema: {\n database: string;\n collections: string[];\n autoMigration: MigrationStyle;\n };\n connectionString: string | undefined;\n}) => {\n // TODO: This will change when we have proper tracing and logging config\n // For now, that's enough\n setLogLevel(process.env.DUMBO_LOG_LEVEL ?? options.logging.logLevel);\n setLogStyle(process.env.DUMBO_LOG_STYLE ?? options.logging.logStyle);\n\n console.log(color.green('Starting Pongo Shell (version: 0.16.11)'));\n\n if (options.logging.printOptions) {\n console.log(color.green('With Options:'));\n console.log(prettyJson(options));\n }\n\n const connectionString =\n options.connectionString ??\n process.env.DB_CONNECTION_STRING ??\n 'postgresql://postgres:postgres@localhost:5432/postgres';\n\n if (!(options.connectionString ?? process.env.DB_CONNECTION_STRING)) {\n console.log(\n color.yellow(\n `No connection string provided, using: 'postgresql://postgres:postgres@localhost:5432/postgres'`,\n ),\n );\n }\n\n const connectionCheck = await checkConnection(connectionString);\n\n if (!connectionCheck.successful) {\n if (connectionCheck.errorType === 'ConnectionRefused') {\n console.error(\n color.red(\n `Connection was refused. Check if the PostgreSQL server is running and accessible.`,\n ),\n );\n } else if (connectionCheck.errorType === 'Authentication') {\n console.error(\n color.red(\n `Authentication failed. Check the username and password in the connection string.`,\n ),\n );\n } else {\n console.error(color.red('Error connecting to PostgreSQL server'));\n }\n console.log(color.red('Exiting Pongo Shell...'));\n process.exit();\n }\n\n console.log(color.green(`Successfully connected`));\n console.log(color.green('Use db.<collection>.<method>() to query.'));\n\n const shell = repl.start({\n prompt: color.green('pongo> '),\n useGlobal: true,\n breakEvalOnSigint: true,\n writer: printOutput,\n });\n\n let db: PongoDb;\n\n if (options.schema.collections.length > 0) {\n const collectionsSchema: Record<string, PongoCollectionSchema> = {};\n\n for (const collectionName of options.schema.collections) {\n collectionsSchema[collectionName] =\n pongoSchema.collection(collectionName);\n }\n\n const schema = pongoSchema.client({\n database: pongoSchema.db(options.schema.database, collectionsSchema),\n });\n\n const typedClient = pongoClient(connectionString, {\n schema: {\n definition: schema,\n autoMigration: options.schema.autoMigration,\n },\n });\n\n db = typedClient.database;\n\n for (const collectionName of options.schema.collections) {\n shell.context[collectionName] = typedClient.database[collectionName];\n }\n\n pongo = typedClient;\n } else {\n pongo = pongoClient(connectionString, {\n schema: { autoMigration: options.schema.autoMigration },\n });\n\n db = pongo.db(options.schema.database);\n }\n\n shell.context.pongo = pongo;\n shell.context.db = db;\n\n // helpers\n shell.context.SQL = SQL;\n shell.context.setLogLevel = setLogLevel;\n shell.context.setLogStyle = setLogStyle;\n shell.context.prettifyLogs = prettifyLogs;\n shell.context.printResultsAsTable = printResultsAsTable;\n shell.context.LogStyle = LogStyle;\n shell.context.LogLevel = LogLevel;\n\n // Intercept REPL output to display results as a table if they are arrays\n shell.on('exit', async () => {\n await teardown();\n process.exit();\n });\n\n shell.on('SIGINT', async () => {\n await teardown();\n process.exit();\n });\n};\n\nconst teardown = async () => {\n console.log(color.yellow('Exiting Pongo Shell...'));\n await pongo.close();\n};\n\nprocess.on('uncaughtException', teardown);\nprocess.on('SIGINT', teardown);\n\ninterface ShellOptions {\n database: string;\n collection: string[];\n connectionString?: string;\n disableAutoMigrations: boolean;\n logStyle?: string;\n logLevel?: string;\n prettyLog?: boolean;\n printOptions?: boolean;\n}\n\nconst shellCommand = new Command('shell')\n .description('Start an interactive Pongo shell')\n .option(\n '--cs, --connectionString <string>',\n 'Connection string for the database',\n )\n .option('--db, --database <string>', 'Database name to connect', 'postgres')\n .option(\n '--col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option(\n '--no-migrations, --disable-auto-migrations',\n 'Disable automatic migrations',\n )\n .option('-o, --print-options', 'Print shell options')\n .option(\n '--ll, --log-level <logLevel>',\n 'Log level: DISABLED, INFO, LOG, WARN, ERROR',\n 'DISABLED',\n )\n .option('--ls, --log-style', 'Log style: RAW, PRETTY', 'RAW')\n .option('-p, --pretty-log', 'Turn on logging with prettified output')\n .action(async (options: ShellOptions) => {\n const { collection, database } = options;\n const connectionString = options.connectionString;\n\n await startRepl({\n logging: {\n printOptions: options.printOptions === true,\n logStyle: options.prettyLog\n ? LogStyle.PRETTY\n : ((options.logStyle as LogStyle | undefined) ?? LogStyle.RAW),\n logLevel: options.logLevel\n ? (options.logLevel as LogLevel)\n : options.prettyLog\n ? LogLevel.INFO\n : LogLevel.DISABLED,\n },\n schema: {\n collections: collection,\n database,\n autoMigration: options.disableAutoMigrations\n ? 'None'\n : 'CreateOrUpdate',\n },\n connectionString,\n });\n });\n\nexport { shellCommand };\n"]}
|
package/dist/cli.js
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
pongoCollectionSchemaComponent,
|
|
6
6
|
pongoSchema,
|
|
7
7
|
toDbSchemaMetadata
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-BCK2M3QD.js";
|
|
9
9
|
|
|
10
10
|
// src/cli.ts
|
|
11
11
|
import { Command as Command4 } from "commander";
|
|
@@ -110,7 +110,7 @@ var configCommand = new Command("config").description(
|
|
|
110
110
|
"Manage Pongo configuration"
|
|
111
111
|
);
|
|
112
112
|
configCommand.command("sample").description("Generate or print sample configuration").option(
|
|
113
|
-
"
|
|
113
|
+
"--col, --collection <name>",
|
|
114
114
|
"Specify the collection name",
|
|
115
115
|
(value, previous) => {
|
|
116
116
|
return previous.concat([value]);
|
|
@@ -152,17 +152,21 @@ var migrateCommand = new Command2("migrate").description(
|
|
|
152
152
|
"Manage database migrations"
|
|
153
153
|
);
|
|
154
154
|
migrateCommand.command("run").description("Run database migrations").option(
|
|
155
|
-
"
|
|
155
|
+
"--cs, --connection-string <string>",
|
|
156
156
|
"Connection string for the database"
|
|
157
157
|
).option(
|
|
158
|
-
"
|
|
158
|
+
"--col, --collection <name>",
|
|
159
159
|
"Specify the collection name",
|
|
160
160
|
(value, previous) => {
|
|
161
161
|
return previous.concat([value]);
|
|
162
162
|
},
|
|
163
163
|
[]
|
|
164
|
-
).option("-f, --config <path>", "Path to configuration file with Pongo config").option("
|
|
165
|
-
|
|
164
|
+
).option("-f, --config <path>", "Path to configuration file with Pongo config").option("--dr, --dryRun", "Perform dry run without commiting changes", false).option(
|
|
165
|
+
"--t, --timeout <ms>",
|
|
166
|
+
"Set the migration timeout in milliseconds",
|
|
167
|
+
parseInt
|
|
168
|
+
).action(async (options) => {
|
|
169
|
+
const { collection, dryRun, timeoutMs } = options;
|
|
166
170
|
const connectionString = options.connectionString ?? process.env.DB_CONNECTION_STRING;
|
|
167
171
|
let collectionNames;
|
|
168
172
|
if (!connectionString) {
|
|
@@ -190,11 +194,12 @@ migrateCommand.command("run").description("Run database migrations").option(
|
|
|
190
194
|
})
|
|
191
195
|
);
|
|
192
196
|
await runPostgreSQLMigrations(pool, migrations, {
|
|
193
|
-
dryRun
|
|
197
|
+
dryRun,
|
|
198
|
+
migrationTimeoutMs: timeoutMs
|
|
194
199
|
});
|
|
195
200
|
});
|
|
196
201
|
migrateCommand.command("sql").description("Generate SQL for database migration").option(
|
|
197
|
-
"
|
|
202
|
+
"--col, --collection <name>",
|
|
198
203
|
"Specify the collection name",
|
|
199
204
|
(value, previous) => {
|
|
200
205
|
return previous.concat([value]);
|
|
@@ -310,7 +315,7 @@ var prettifyLogs = (logLevel) => {
|
|
|
310
315
|
var startRepl = async (options) => {
|
|
311
316
|
setLogLevel(process.env.DUMBO_LOG_LEVEL ?? options.logging.logLevel);
|
|
312
317
|
setLogStyle(process.env.DUMBO_LOG_STYLE ?? options.logging.logStyle);
|
|
313
|
-
console.log(color.green("Starting Pongo Shell (version: 0.16.
|
|
318
|
+
console.log(color.green("Starting Pongo Shell (version: 0.16.11)"));
|
|
314
319
|
if (options.logging.printOptions) {
|
|
315
320
|
console.log(color.green("With Options:"));
|
|
316
321
|
console.log(prettyJson(options));
|
|
@@ -402,23 +407,23 @@ var teardown = async () => {
|
|
|
402
407
|
process.on("uncaughtException", teardown);
|
|
403
408
|
process.on("SIGINT", teardown);
|
|
404
409
|
var shellCommand = new Command3("shell").description("Start an interactive Pongo shell").option(
|
|
405
|
-
"
|
|
410
|
+
"--cs, --connectionString <string>",
|
|
406
411
|
"Connection string for the database"
|
|
407
|
-
).option("
|
|
408
|
-
"
|
|
412
|
+
).option("--db, --database <string>", "Database name to connect", "postgres").option(
|
|
413
|
+
"--col, --collection <name>",
|
|
409
414
|
"Specify the collection name",
|
|
410
415
|
(value, previous) => {
|
|
411
416
|
return previous.concat([value]);
|
|
412
417
|
},
|
|
413
418
|
[]
|
|
414
419
|
).option(
|
|
415
|
-
"
|
|
420
|
+
"--no-migrations, --disable-auto-migrations",
|
|
416
421
|
"Disable automatic migrations"
|
|
417
422
|
).option("-o, --print-options", "Print shell options").option(
|
|
418
|
-
"
|
|
423
|
+
"--ll, --log-level <logLevel>",
|
|
419
424
|
"Log level: DISABLED, INFO, LOG, WARN, ERROR",
|
|
420
425
|
"DISABLED"
|
|
421
|
-
).option("
|
|
426
|
+
).option("--ls, --log-style", "Log style: RAW, PRETTY", "RAW").option("-p, --pretty-log", "Turn on logging with prettified output").action(async (options) => {
|
|
422
427
|
const { collection, database } = options;
|
|
423
428
|
const connectionString = options.connectionString;
|
|
424
429
|
await startRepl({
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/cli.ts","../src/commandLine/configFile.ts","../src/commandLine/migrate.ts","../src/commandLine/shell.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { Command } from 'commander';\nimport { configCommand, migrateCommand, shellCommand } from './commandLine';\n\nconst program = new Command();\n\nprogram.name('pongo').description('CLI tool for Pongo');\n\nprogram.addCommand(configCommand);\nprogram.addCommand(migrateCommand);\nprogram.addCommand(shellCommand);\n\nprogram.parse(process.argv);\n\nexport default program;\n","import { Command } from 'commander';\nimport fs from 'node:fs';\nimport {\n objectEntries,\n toDbSchemaMetadata,\n type PongoDbSchemaMetadata,\n type PongoSchemaConfig,\n} from '../core';\n\nconst formatTypeName = (input: string): string => {\n if (input.length === 0) {\n return input;\n }\n\n let formatted = input.charAt(0).toUpperCase() + input.slice(1);\n\n if (formatted.endsWith('s')) {\n formatted = formatted.slice(0, -1);\n }\n\n return formatted;\n};\n\nconst sampleConfig = (collectionNames: string[] = ['users']) => {\n const types = collectionNames\n .map(\n (name) =>\n `export type ${formatTypeName(name)} = { name: string; description: string; date: Date }`,\n )\n .join('\\n');\n\n const collections = collectionNames\n .map(\n (name) =>\n ` ${name}: pongoSchema.collection<${formatTypeName(name)}>('${name}'),`,\n )\n .join('\\n');\n\n return `import { pongoSchema } from '@event-driven-io/pongo';\n\n${types}\n\nexport default {\n schema: pongoSchema.client({\n database: pongoSchema.db({\n${collections}\n }),\n }),\n};`;\n};\n\nconst missingDefaultExport = `Error: Config should contain default export, e.g.\\n\\n${sampleConfig()}`;\nconst missingSchema = `Error: Config should contain schema property, e.g.\\n\\n${sampleConfig()}`;\nconst missingDbs = `Error: Config should have at least a single database defined, e.g.\\n\\n${sampleConfig()}`;\nconst missingDefaultDb = `Error: Config should have a default database defined (without name or or with default database name), e.g.\\n\\n${sampleConfig()}`;\nconst missingCollections = `Error: Database should have defined at least one collection, e.g.\\n\\n${sampleConfig()}`;\n\nexport const loadConfigFile = async (\n configPath: string,\n): Promise<PongoDbSchemaMetadata> => {\n const configUrl = new URL(configPath, `file://${process.cwd()}/`);\n try {\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n const imported: Partial<{ default: PongoSchemaConfig }> = await import(\n configUrl.href\n );\n\n const parsed = parseDefaultDbSchema(imported);\n\n if (typeof parsed === 'string') {\n console.error(parsed);\n process.exit(1);\n }\n\n return parsed;\n } catch {\n console.error(`Error: Couldn't load file: ${configUrl.href}`);\n process.exit(1);\n }\n};\n\nexport const generateConfigFile = (\n configPath: string,\n collectionNames: string[],\n): void => {\n try {\n fs.writeFileSync(configPath, sampleConfig(collectionNames), 'utf8');\n console.log(`Configuration file stored at: ${configPath}`);\n } catch (error) {\n console.error(`Error: Couldn't store config file: ${configPath}!`);\n console.error(error);\n process.exit(1);\n }\n};\n\nexport const parseDefaultDbSchema = (\n imported: Partial<{ default: PongoSchemaConfig }>,\n): PongoDbSchemaMetadata | string => {\n if (!imported.default) {\n return missingDefaultExport;\n }\n\n if (!imported.default.schema) {\n return missingSchema;\n }\n\n if (!imported.default.schema.dbs) {\n return missingDbs;\n }\n\n const dbs = objectEntries(imported.default.schema.dbs).map((db) => db[1]);\n\n const defaultDb = dbs.find((db) => db.name === undefined);\n\n if (!defaultDb) {\n return missingDefaultDb;\n }\n\n if (!defaultDb.collections) {\n return missingCollections;\n }\n\n const collections = objectEntries(defaultDb.collections).map((col) => col[1]);\n\n if (collections.length === 0) {\n return missingCollections;\n }\n\n return toDbSchemaMetadata(defaultDb);\n};\n\ntype SampleConfigOptions =\n | {\n collection: string[];\n print?: boolean;\n }\n | {\n collection: string[];\n generate?: boolean;\n file?: string;\n };\n\nexport const configCommand = new Command('config').description(\n 'Manage Pongo configuration',\n);\n\nconfigCommand\n .command('sample')\n .description('Generate or print sample configuration')\n .option(\n '-col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option(\n '-f, --file <path>',\n 'Path to configuration file with collection list',\n )\n .option('-g, --generate', 'Generate sample config file')\n .option('-p, --print', 'Print sample config file')\n .action((options: SampleConfigOptions) => {\n const collectionNames =\n options.collection.length > 0 ? options.collection : ['users'];\n\n if (!('print' in options) && !('generate' in options)) {\n console.error(\n 'Error: Please provide either:\\n--print param to print sample config or\\n--generate to generate sample config file',\n );\n process.exit(1);\n }\n\n if ('print' in options) {\n console.log(`${sampleConfig(collectionNames)}`);\n } else if ('generate' in options) {\n if (!options.file) {\n console.error(\n 'Error: You need to provide a config file through a --file',\n );\n process.exit(1);\n }\n\n generateConfigFile(options.file, collectionNames);\n }\n });\n","import {\n combineMigrations,\n dumbo,\n migrationTableSchemaComponent,\n runPostgreSQLMigrations,\n} from '@event-driven-io/dumbo';\nimport { Command } from 'commander';\nimport { pongoCollectionSchemaComponent } from '../core';\nimport { loadConfigFile } from './configFile';\n\ninterface MigrateRunOptions {\n collection: string[];\n connectionString: string;\n config?: string;\n dryRun?: boolean;\n}\n\ninterface MigrateSqlOptions {\n print?: boolean;\n write?: string;\n config?: string;\n collection: string[];\n}\n\nexport const migrateCommand = new Command('migrate').description(\n 'Manage database migrations',\n);\n\nmigrateCommand\n .command('run')\n .description('Run database migrations')\n .option(\n '-cs, --connection-string <string>',\n 'Connection string for the database',\n )\n .option(\n '-col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option('-f, --config <path>', 'Path to configuration file with Pongo config')\n .option('-dr, --dryRun', 'Perform dry run without commiting changes', false)\n .action(async (options: MigrateRunOptions) => {\n const { collection, dryRun } = options;\n const connectionString =\n options.connectionString ?? process.env.DB_CONNECTION_STRING;\n let collectionNames: string[];\n\n if (!connectionString) {\n console.error(\n 'Error: Connection string is required. Provide it either as a \"--connection-string\" parameter or through the DB_CONNECTION_STRING environment variable.' +\n '\\nFor instance: --connection-string postgresql://postgres:postgres@localhost:5432/postgres',\n );\n process.exit(1);\n }\n\n if (options.config) {\n const config = await loadConfigFile(options.config);\n\n collectionNames = config.collections.map((c) => c.name);\n } else if (collection) {\n collectionNames = collection;\n } else {\n console.error(\n 'Error: You need to provide at least one collection name. Provide it either through \"--config\" file or as a \"--collection\" parameter.',\n );\n process.exit(1);\n }\n\n const pool = dumbo({ connectionString });\n\n const migrations = collectionNames.flatMap((collectionsName) =>\n pongoCollectionSchemaComponent(collectionsName).migrations({\n connector: 'PostgreSQL:pg', // TODO: Provide connector here\n }),\n );\n\n await runPostgreSQLMigrations(pool, migrations, {\n dryRun,\n });\n });\n\nmigrateCommand\n .command('sql')\n .description('Generate SQL for database migration')\n .option(\n '-col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option('-f, --config <path>', 'Path to configuration file with Pongo config')\n .option('--print', 'Print the SQL to the console (default)', true)\n //.option('--write <filename>', 'Write the SQL to a specified file')\n .action(async (options: MigrateSqlOptions) => {\n const { collection } = options;\n\n let collectionNames: string[];\n\n if (options.config) {\n const config = await loadConfigFile(options.config);\n\n collectionNames = config.collections.map((c) => c.name);\n } else if (collection) {\n collectionNames = collection;\n } else {\n console.error(\n 'Error: You need to provide at least one collection name. Provide it either through \"--config\" file or as a \"--collection\" parameter.',\n );\n process.exit(1);\n }\n\n const coreMigrations = migrationTableSchemaComponent.migrations({\n connector: 'PostgreSQL:pg',\n });\n const migrations = [\n ...coreMigrations,\n ...collectionNames.flatMap((collectionName) =>\n pongoCollectionSchemaComponent(collectionName).migrations({\n connector: 'PostgreSQL:pg', // TODO: Provide connector here\n }),\n ),\n ];\n\n console.log('Printing SQL:');\n console.log(combineMigrations(...migrations));\n });\n","import {\n checkConnection,\n color,\n LogLevel,\n LogStyle,\n prettyJson,\n SQL,\n type MigrationStyle,\n} from '@event-driven-io/dumbo';\nimport Table from 'cli-table3';\nimport { Command } from 'commander';\nimport repl from 'node:repl';\nimport {\n pongoClient,\n pongoSchema,\n type PongoClient,\n type PongoCollectionSchema,\n type PongoDb,\n} from '../core';\n\nlet pongo: PongoClient;\n\nconst calculateColumnWidths = (\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n results: any[],\n columnNames: string[],\n): number[] => {\n const columnWidths = columnNames.map((col) => {\n const maxWidth = Math.max(\n col.length, // Header size\n ...results.map((result) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n result[col] ? String(result[col]).length : 0,\n ),\n );\n return maxWidth + 2; // Add padding\n });\n return columnWidths;\n};\n\nlet shouldDisplayResultsAsTable = false;\n\nconst printResultsAsTable = (print?: boolean) =>\n (shouldDisplayResultsAsTable = print === undefined || print === true);\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst printOutput = (obj: any): string =>\n Array.isArray(obj) && shouldDisplayResultsAsTable\n ? displayResultsAsTable(obj)\n : prettyJson(obj);\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst displayResultsAsTable = (results: any[]): string => {\n if (results.length === 0) {\n return color.yellow('No documents found.');\n }\n\n const columnNames = results\n\n .flatMap((result) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument\n typeof result === 'object' ? Object.keys(result) : typeof result,\n )\n .filter((value, index, array) => array.indexOf(value) === index);\n\n const columnWidths = calculateColumnWidths(results, columnNames);\n\n const table = new Table({\n head: columnNames.map((col) => color.cyan(col)),\n colWidths: columnWidths,\n });\n\n results.forEach((result) => {\n table.push(\n columnNames.map((col) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n result[col] !== undefined\n ? // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n Array.isArray(result[col])\n ? // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n displayResultsAsTable(result[col])\n : // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n prettyJson(result[col])\n : typeof result === 'object'\n ? ''\n : result != undefined && result != undefined\n ? prettyJson(result)\n : '',\n ),\n );\n });\n\n return table.toString();\n};\n\nconst setLogLevel = (logLevel: string) => {\n process.env.DUMBO_LOG_LEVEL = logLevel;\n};\n\nconst setLogStyle = (logLevel: string) => {\n process.env.DUMBO_LOG_STYLE = logLevel;\n};\n\nconst prettifyLogs = (logLevel?: string) => {\n if (logLevel !== undefined) setLogLevel(logLevel);\n setLogStyle(LogStyle.PRETTY);\n};\n\nconst startRepl = async (options: {\n logging: {\n printOptions: boolean;\n logLevel: LogLevel;\n logStyle: LogStyle;\n };\n schema: {\n database: string;\n collections: string[];\n autoMigration: MigrationStyle;\n };\n connectionString: string | undefined;\n}) => {\n // TODO: This will change when we have proper tracing and logging config\n // For now, that's enough\n setLogLevel(process.env.DUMBO_LOG_LEVEL ?? options.logging.logLevel);\n setLogStyle(process.env.DUMBO_LOG_STYLE ?? options.logging.logStyle);\n\n console.log(color.green('Starting Pongo Shell (version: 0.16.10)'));\n\n if (options.logging.printOptions) {\n console.log(color.green('With Options:'));\n console.log(prettyJson(options));\n }\n\n const connectionString =\n options.connectionString ??\n process.env.DB_CONNECTION_STRING ??\n 'postgresql://postgres:postgres@localhost:5432/postgres';\n\n if (!(options.connectionString ?? process.env.DB_CONNECTION_STRING)) {\n console.log(\n color.yellow(\n `No connection string provided, using: 'postgresql://postgres:postgres@localhost:5432/postgres'`,\n ),\n );\n }\n\n const connectionCheck = await checkConnection(connectionString);\n\n if (!connectionCheck.successful) {\n if (connectionCheck.errorType === 'ConnectionRefused') {\n console.error(\n color.red(\n `Connection was refused. Check if the PostgreSQL server is running and accessible.`,\n ),\n );\n } else if (connectionCheck.errorType === 'Authentication') {\n console.error(\n color.red(\n `Authentication failed. Check the username and password in the connection string.`,\n ),\n );\n } else {\n console.error(color.red('Error connecting to PostgreSQL server'));\n }\n console.log(color.red('Exiting Pongo Shell...'));\n process.exit();\n }\n\n console.log(color.green(`Successfully connected`));\n console.log(color.green('Use db.<collection>.<method>() to query.'));\n\n const shell = repl.start({\n prompt: color.green('pongo> '),\n useGlobal: true,\n breakEvalOnSigint: true,\n writer: printOutput,\n });\n\n let db: PongoDb;\n\n if (options.schema.collections.length > 0) {\n const collectionsSchema: Record<string, PongoCollectionSchema> = {};\n\n for (const collectionName of options.schema.collections) {\n collectionsSchema[collectionName] =\n pongoSchema.collection(collectionName);\n }\n\n const schema = pongoSchema.client({\n database: pongoSchema.db(options.schema.database, collectionsSchema),\n });\n\n const typedClient = pongoClient(connectionString, {\n schema: {\n definition: schema,\n autoMigration: options.schema.autoMigration,\n },\n });\n\n db = typedClient.database;\n\n for (const collectionName of options.schema.collections) {\n shell.context[collectionName] = typedClient.database[collectionName];\n }\n\n pongo = typedClient;\n } else {\n pongo = pongoClient(connectionString, {\n schema: { autoMigration: options.schema.autoMigration },\n });\n\n db = pongo.db(options.schema.database);\n }\n\n shell.context.pongo = pongo;\n shell.context.db = db;\n\n // helpers\n shell.context.SQL = SQL;\n shell.context.setLogLevel = setLogLevel;\n shell.context.setLogStyle = setLogStyle;\n shell.context.prettifyLogs = prettifyLogs;\n shell.context.printResultsAsTable = printResultsAsTable;\n shell.context.LogStyle = LogStyle;\n shell.context.LogLevel = LogLevel;\n\n // Intercept REPL output to display results as a table if they are arrays\n shell.on('exit', async () => {\n await teardown();\n process.exit();\n });\n\n shell.on('SIGINT', async () => {\n await teardown();\n process.exit();\n });\n};\n\nconst teardown = async () => {\n console.log(color.yellow('Exiting Pongo Shell...'));\n await pongo.close();\n};\n\nprocess.on('uncaughtException', teardown);\nprocess.on('SIGINT', teardown);\n\ninterface ShellOptions {\n database: string;\n collection: string[];\n connectionString?: string;\n disableAutoMigrations: boolean;\n logStyle?: string;\n logLevel?: string;\n prettyLog?: boolean;\n printOptions?: boolean;\n}\n\nconst shellCommand = new Command('shell')\n .description('Start an interactive Pongo shell')\n .option(\n '-cs, --connectionString <string>',\n 'Connection string for the database',\n )\n .option('-db, --database <string>', 'Database name to connect', 'postgres')\n .option(\n '-col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option(\n '-no-migrations, --disable-auto-migrations',\n 'Disable automatic migrations',\n )\n .option('-o, --print-options', 'Print shell options')\n .option(\n '-ll, --log-level <logLevel>',\n 'Log level: DISABLED, INFO, LOG, WARN, ERROR',\n 'DISABLED',\n )\n .option('-ls, --log-style', 'Log style: RAW, PRETTY', 'RAW')\n .option('-p, --pretty-log', 'Turn on logging with prettified output')\n .action(async (options: ShellOptions) => {\n const { collection, database } = options;\n const connectionString = options.connectionString;\n\n await startRepl({\n logging: {\n printOptions: options.printOptions === true,\n logStyle: options.prettyLog\n ? LogStyle.PRETTY\n : ((options.logStyle as LogStyle | undefined) ?? LogStyle.RAW),\n logLevel: options.logLevel\n ? (options.logLevel as LogLevel)\n : options.prettyLog\n ? LogLevel.INFO\n : LogLevel.DISABLED,\n },\n schema: {\n collections: collection,\n database,\n autoMigration: options.disableAutoMigrations\n ? 'None'\n : 'CreateOrUpdate',\n },\n connectionString,\n });\n });\n\nexport { shellCommand };\n"],"mappings":"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","names":["Command","Command","Command","Command","Command","Command"]}
|
|
1
|
+
{"version":3,"sources":["../src/cli.ts","../src/commandLine/configFile.ts","../src/commandLine/migrate.ts","../src/commandLine/shell.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { Command } from 'commander';\nimport { configCommand, migrateCommand, shellCommand } from './commandLine';\n\nconst program = new Command();\n\nprogram.name('pongo').description('CLI tool for Pongo');\n\nprogram.addCommand(configCommand);\nprogram.addCommand(migrateCommand);\nprogram.addCommand(shellCommand);\n\nprogram.parse(process.argv);\n\nexport default program;\n","import { Command } from 'commander';\nimport fs from 'node:fs';\nimport {\n objectEntries,\n toDbSchemaMetadata,\n type PongoDbSchemaMetadata,\n type PongoSchemaConfig,\n} from '../core';\n\nconst formatTypeName = (input: string): string => {\n if (input.length === 0) {\n return input;\n }\n\n let formatted = input.charAt(0).toUpperCase() + input.slice(1);\n\n if (formatted.endsWith('s')) {\n formatted = formatted.slice(0, -1);\n }\n\n return formatted;\n};\n\nconst sampleConfig = (collectionNames: string[] = ['users']) => {\n const types = collectionNames\n .map(\n (name) =>\n `export type ${formatTypeName(name)} = { name: string; description: string; date: Date }`,\n )\n .join('\\n');\n\n const collections = collectionNames\n .map(\n (name) =>\n ` ${name}: pongoSchema.collection<${formatTypeName(name)}>('${name}'),`,\n )\n .join('\\n');\n\n return `import { pongoSchema } from '@event-driven-io/pongo';\n\n${types}\n\nexport default {\n schema: pongoSchema.client({\n database: pongoSchema.db({\n${collections}\n }),\n }),\n};`;\n};\n\nconst missingDefaultExport = `Error: Config should contain default export, e.g.\\n\\n${sampleConfig()}`;\nconst missingSchema = `Error: Config should contain schema property, e.g.\\n\\n${sampleConfig()}`;\nconst missingDbs = `Error: Config should have at least a single database defined, e.g.\\n\\n${sampleConfig()}`;\nconst missingDefaultDb = `Error: Config should have a default database defined (without name or or with default database name), e.g.\\n\\n${sampleConfig()}`;\nconst missingCollections = `Error: Database should have defined at least one collection, e.g.\\n\\n${sampleConfig()}`;\n\nexport const loadConfigFile = async (\n configPath: string,\n): Promise<PongoDbSchemaMetadata> => {\n const configUrl = new URL(configPath, `file://${process.cwd()}/`);\n try {\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n const imported: Partial<{ default: PongoSchemaConfig }> = await import(\n configUrl.href\n );\n\n const parsed = parseDefaultDbSchema(imported);\n\n if (typeof parsed === 'string') {\n console.error(parsed);\n process.exit(1);\n }\n\n return parsed;\n } catch {\n console.error(`Error: Couldn't load file: ${configUrl.href}`);\n process.exit(1);\n }\n};\n\nexport const generateConfigFile = (\n configPath: string,\n collectionNames: string[],\n): void => {\n try {\n fs.writeFileSync(configPath, sampleConfig(collectionNames), 'utf8');\n console.log(`Configuration file stored at: ${configPath}`);\n } catch (error) {\n console.error(`Error: Couldn't store config file: ${configPath}!`);\n console.error(error);\n process.exit(1);\n }\n};\n\nexport const parseDefaultDbSchema = (\n imported: Partial<{ default: PongoSchemaConfig }>,\n): PongoDbSchemaMetadata | string => {\n if (!imported.default) {\n return missingDefaultExport;\n }\n\n if (!imported.default.schema) {\n return missingSchema;\n }\n\n if (!imported.default.schema.dbs) {\n return missingDbs;\n }\n\n const dbs = objectEntries(imported.default.schema.dbs).map((db) => db[1]);\n\n const defaultDb = dbs.find((db) => db.name === undefined);\n\n if (!defaultDb) {\n return missingDefaultDb;\n }\n\n if (!defaultDb.collections) {\n return missingCollections;\n }\n\n const collections = objectEntries(defaultDb.collections).map((col) => col[1]);\n\n if (collections.length === 0) {\n return missingCollections;\n }\n\n return toDbSchemaMetadata(defaultDb);\n};\n\ntype SampleConfigOptions =\n | {\n collection: string[];\n print?: boolean;\n }\n | {\n collection: string[];\n generate?: boolean;\n file?: string;\n };\n\nexport const configCommand = new Command('config').description(\n 'Manage Pongo configuration',\n);\n\nconfigCommand\n .command('sample')\n .description('Generate or print sample configuration')\n .option(\n '--col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option(\n '-f, --file <path>',\n 'Path to configuration file with collection list',\n )\n .option('-g, --generate', 'Generate sample config file')\n .option('-p, --print', 'Print sample config file')\n .action((options: SampleConfigOptions) => {\n const collectionNames =\n options.collection.length > 0 ? options.collection : ['users'];\n\n if (!('print' in options) && !('generate' in options)) {\n console.error(\n 'Error: Please provide either:\\n--print param to print sample config or\\n--generate to generate sample config file',\n );\n process.exit(1);\n }\n\n if ('print' in options) {\n console.log(`${sampleConfig(collectionNames)}`);\n } else if ('generate' in options) {\n if (!options.file) {\n console.error(\n 'Error: You need to provide a config file through a --file',\n );\n process.exit(1);\n }\n\n generateConfigFile(options.file, collectionNames);\n }\n });\n","import {\n combineMigrations,\n dumbo,\n migrationTableSchemaComponent,\n runPostgreSQLMigrations,\n} from '@event-driven-io/dumbo';\nimport { Command } from 'commander';\nimport { pongoCollectionSchemaComponent } from '../core';\nimport { loadConfigFile } from './configFile';\n\ninterface MigrateRunOptions {\n collection: string[];\n connectionString: string;\n config?: string;\n dryRun?: boolean;\n timeoutMs?: number;\n}\n\ninterface MigrateSqlOptions {\n print?: boolean;\n write?: string;\n config?: string;\n collection: string[];\n}\n\nexport const migrateCommand = new Command('migrate').description(\n 'Manage database migrations',\n);\n\nmigrateCommand\n .command('run')\n .description('Run database migrations')\n .option(\n '--cs, --connection-string <string>',\n 'Connection string for the database',\n )\n .option(\n '--col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option('-f, --config <path>', 'Path to configuration file with Pongo config')\n .option('--dr, --dryRun', 'Perform dry run without commiting changes', false)\n .option(\n '--t, --timeout <ms>',\n 'Set the migration timeout in milliseconds',\n parseInt,\n )\n .action(async (options: MigrateRunOptions) => {\n const { collection, dryRun, timeoutMs } = options;\n const connectionString =\n options.connectionString ?? process.env.DB_CONNECTION_STRING;\n let collectionNames: string[];\n\n if (!connectionString) {\n console.error(\n 'Error: Connection string is required. Provide it either as a \"--connection-string\" parameter or through the DB_CONNECTION_STRING environment variable.' +\n '\\nFor instance: --connection-string postgresql://postgres:postgres@localhost:5432/postgres',\n );\n process.exit(1);\n }\n\n if (options.config) {\n const config = await loadConfigFile(options.config);\n\n collectionNames = config.collections.map((c) => c.name);\n } else if (collection) {\n collectionNames = collection;\n } else {\n console.error(\n 'Error: You need to provide at least one collection name. Provide it either through \"--config\" file or as a \"--collection\" parameter.',\n );\n process.exit(1);\n }\n\n const pool = dumbo({ connectionString });\n\n const migrations = collectionNames.flatMap((collectionsName) =>\n pongoCollectionSchemaComponent(collectionsName).migrations({\n connector: 'PostgreSQL:pg', // TODO: Provide connector here\n }),\n );\n\n await runPostgreSQLMigrations(pool, migrations, {\n dryRun,\n migrationTimeoutMs: timeoutMs,\n });\n });\n\nmigrateCommand\n .command('sql')\n .description('Generate SQL for database migration')\n .option(\n '--col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option('-f, --config <path>', 'Path to configuration file with Pongo config')\n .option('--print', 'Print the SQL to the console (default)', true)\n //.option('--write <filename>', 'Write the SQL to a specified file')\n .action(async (options: MigrateSqlOptions) => {\n const { collection } = options;\n\n let collectionNames: string[];\n\n if (options.config) {\n const config = await loadConfigFile(options.config);\n\n collectionNames = config.collections.map((c) => c.name);\n } else if (collection) {\n collectionNames = collection;\n } else {\n console.error(\n 'Error: You need to provide at least one collection name. Provide it either through \"--config\" file or as a \"--collection\" parameter.',\n );\n process.exit(1);\n }\n\n const coreMigrations = migrationTableSchemaComponent.migrations({\n connector: 'PostgreSQL:pg',\n });\n const migrations = [\n ...coreMigrations,\n ...collectionNames.flatMap((collectionName) =>\n pongoCollectionSchemaComponent(collectionName).migrations({\n connector: 'PostgreSQL:pg', // TODO: Provide connector here\n }),\n ),\n ];\n\n console.log('Printing SQL:');\n console.log(combineMigrations(...migrations));\n });\n","import {\n checkConnection,\n color,\n LogLevel,\n LogStyle,\n prettyJson,\n SQL,\n type MigrationStyle,\n} from '@event-driven-io/dumbo';\nimport Table from 'cli-table3';\nimport { Command } from 'commander';\nimport repl from 'node:repl';\nimport {\n pongoClient,\n pongoSchema,\n type PongoClient,\n type PongoCollectionSchema,\n type PongoDb,\n} from '../core';\n\nlet pongo: PongoClient;\n\nconst calculateColumnWidths = (\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n results: any[],\n columnNames: string[],\n): number[] => {\n const columnWidths = columnNames.map((col) => {\n const maxWidth = Math.max(\n col.length, // Header size\n ...results.map((result) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n result[col] ? String(result[col]).length : 0,\n ),\n );\n return maxWidth + 2; // Add padding\n });\n return columnWidths;\n};\n\nlet shouldDisplayResultsAsTable = false;\n\nconst printResultsAsTable = (print?: boolean) =>\n (shouldDisplayResultsAsTable = print === undefined || print === true);\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst printOutput = (obj: any): string =>\n Array.isArray(obj) && shouldDisplayResultsAsTable\n ? displayResultsAsTable(obj)\n : prettyJson(obj);\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nconst displayResultsAsTable = (results: any[]): string => {\n if (results.length === 0) {\n return color.yellow('No documents found.');\n }\n\n const columnNames = results\n\n .flatMap((result) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument\n typeof result === 'object' ? Object.keys(result) : typeof result,\n )\n .filter((value, index, array) => array.indexOf(value) === index);\n\n const columnWidths = calculateColumnWidths(results, columnNames);\n\n const table = new Table({\n head: columnNames.map((col) => color.cyan(col)),\n colWidths: columnWidths,\n });\n\n results.forEach((result) => {\n table.push(\n columnNames.map((col) =>\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n result[col] !== undefined\n ? // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n Array.isArray(result[col])\n ? // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n displayResultsAsTable(result[col])\n : // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access\n prettyJson(result[col])\n : typeof result === 'object'\n ? ''\n : result != undefined && result != undefined\n ? prettyJson(result)\n : '',\n ),\n );\n });\n\n return table.toString();\n};\n\nconst setLogLevel = (logLevel: string) => {\n process.env.DUMBO_LOG_LEVEL = logLevel;\n};\n\nconst setLogStyle = (logLevel: string) => {\n process.env.DUMBO_LOG_STYLE = logLevel;\n};\n\nconst prettifyLogs = (logLevel?: string) => {\n if (logLevel !== undefined) setLogLevel(logLevel);\n setLogStyle(LogStyle.PRETTY);\n};\n\nconst startRepl = async (options: {\n logging: {\n printOptions: boolean;\n logLevel: LogLevel;\n logStyle: LogStyle;\n };\n schema: {\n database: string;\n collections: string[];\n autoMigration: MigrationStyle;\n };\n connectionString: string | undefined;\n}) => {\n // TODO: This will change when we have proper tracing and logging config\n // For now, that's enough\n setLogLevel(process.env.DUMBO_LOG_LEVEL ?? options.logging.logLevel);\n setLogStyle(process.env.DUMBO_LOG_STYLE ?? options.logging.logStyle);\n\n console.log(color.green('Starting Pongo Shell (version: 0.16.11)'));\n\n if (options.logging.printOptions) {\n console.log(color.green('With Options:'));\n console.log(prettyJson(options));\n }\n\n const connectionString =\n options.connectionString ??\n process.env.DB_CONNECTION_STRING ??\n 'postgresql://postgres:postgres@localhost:5432/postgres';\n\n if (!(options.connectionString ?? process.env.DB_CONNECTION_STRING)) {\n console.log(\n color.yellow(\n `No connection string provided, using: 'postgresql://postgres:postgres@localhost:5432/postgres'`,\n ),\n );\n }\n\n const connectionCheck = await checkConnection(connectionString);\n\n if (!connectionCheck.successful) {\n if (connectionCheck.errorType === 'ConnectionRefused') {\n console.error(\n color.red(\n `Connection was refused. Check if the PostgreSQL server is running and accessible.`,\n ),\n );\n } else if (connectionCheck.errorType === 'Authentication') {\n console.error(\n color.red(\n `Authentication failed. Check the username and password in the connection string.`,\n ),\n );\n } else {\n console.error(color.red('Error connecting to PostgreSQL server'));\n }\n console.log(color.red('Exiting Pongo Shell...'));\n process.exit();\n }\n\n console.log(color.green(`Successfully connected`));\n console.log(color.green('Use db.<collection>.<method>() to query.'));\n\n const shell = repl.start({\n prompt: color.green('pongo> '),\n useGlobal: true,\n breakEvalOnSigint: true,\n writer: printOutput,\n });\n\n let db: PongoDb;\n\n if (options.schema.collections.length > 0) {\n const collectionsSchema: Record<string, PongoCollectionSchema> = {};\n\n for (const collectionName of options.schema.collections) {\n collectionsSchema[collectionName] =\n pongoSchema.collection(collectionName);\n }\n\n const schema = pongoSchema.client({\n database: pongoSchema.db(options.schema.database, collectionsSchema),\n });\n\n const typedClient = pongoClient(connectionString, {\n schema: {\n definition: schema,\n autoMigration: options.schema.autoMigration,\n },\n });\n\n db = typedClient.database;\n\n for (const collectionName of options.schema.collections) {\n shell.context[collectionName] = typedClient.database[collectionName];\n }\n\n pongo = typedClient;\n } else {\n pongo = pongoClient(connectionString, {\n schema: { autoMigration: options.schema.autoMigration },\n });\n\n db = pongo.db(options.schema.database);\n }\n\n shell.context.pongo = pongo;\n shell.context.db = db;\n\n // helpers\n shell.context.SQL = SQL;\n shell.context.setLogLevel = setLogLevel;\n shell.context.setLogStyle = setLogStyle;\n shell.context.prettifyLogs = prettifyLogs;\n shell.context.printResultsAsTable = printResultsAsTable;\n shell.context.LogStyle = LogStyle;\n shell.context.LogLevel = LogLevel;\n\n // Intercept REPL output to display results as a table if they are arrays\n shell.on('exit', async () => {\n await teardown();\n process.exit();\n });\n\n shell.on('SIGINT', async () => {\n await teardown();\n process.exit();\n });\n};\n\nconst teardown = async () => {\n console.log(color.yellow('Exiting Pongo Shell...'));\n await pongo.close();\n};\n\nprocess.on('uncaughtException', teardown);\nprocess.on('SIGINT', teardown);\n\ninterface ShellOptions {\n database: string;\n collection: string[];\n connectionString?: string;\n disableAutoMigrations: boolean;\n logStyle?: string;\n logLevel?: string;\n prettyLog?: boolean;\n printOptions?: boolean;\n}\n\nconst shellCommand = new Command('shell')\n .description('Start an interactive Pongo shell')\n .option(\n '--cs, --connectionString <string>',\n 'Connection string for the database',\n )\n .option('--db, --database <string>', 'Database name to connect', 'postgres')\n .option(\n '--col, --collection <name>',\n 'Specify the collection name',\n (value: string, previous: string[]) => {\n // Accumulate collection names into an array (explicitly typing `previous` as `string[]`)\n return previous.concat([value]);\n },\n [] as string[],\n )\n .option(\n '--no-migrations, --disable-auto-migrations',\n 'Disable automatic migrations',\n )\n .option('-o, --print-options', 'Print shell options')\n .option(\n '--ll, --log-level <logLevel>',\n 'Log level: DISABLED, INFO, LOG, WARN, ERROR',\n 'DISABLED',\n )\n .option('--ls, --log-style', 'Log style: RAW, PRETTY', 'RAW')\n .option('-p, --pretty-log', 'Turn on logging with prettified output')\n .action(async (options: ShellOptions) => {\n const { collection, database } = options;\n const connectionString = options.connectionString;\n\n await startRepl({\n logging: {\n printOptions: options.printOptions === true,\n logStyle: options.prettyLog\n ? LogStyle.PRETTY\n : ((options.logStyle as LogStyle | undefined) ?? LogStyle.RAW),\n logLevel: options.logLevel\n ? (options.logLevel as LogLevel)\n : options.prettyLog\n ? LogLevel.INFO\n : LogLevel.DISABLED,\n },\n schema: {\n collections: collection,\n database,\n autoMigration: options.disableAutoMigrations\n ? 'None'\n : 'CreateOrUpdate',\n },\n connectionString,\n });\n });\n\nexport { shellCommand };\n"],"mappings":"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","names":["Command","Command","Command","Command","Command","Command"]}
|
package/dist/index.cjs
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
|
|
39
|
-
var
|
|
39
|
+
var _chunkPZIZKSMQcjs = require('./chunk-PZIZKSMQ.cjs');
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
|
|
@@ -75,5 +75,5 @@ var _chunk3K7LHO2Pcjs = require('./chunk-3K7LHO2P.cjs');
|
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
|
|
78
|
-
exports.ConcurrencyError =
|
|
78
|
+
exports.ConcurrencyError = _chunkPZIZKSMQcjs.ConcurrencyError; exports.DOCUMENT_DOES_NOT_EXIST = _chunkPZIZKSMQcjs.DOCUMENT_DOES_NOT_EXIST; exports.DOCUMENT_EXISTS = _chunkPZIZKSMQcjs.DOCUMENT_EXISTS; exports.NO_CONCURRENCY_CHECK = _chunkPZIZKSMQcjs.NO_CONCURRENCY_CHECK; exports.ObjectId = _chunkPZIZKSMQcjs.ObjectId; exports.OperatorMap = _chunkPZIZKSMQcjs.OperatorMap; exports.PongoError = _chunkPZIZKSMQcjs.PongoError; exports.QueryOperators = _chunkPZIZKSMQcjs.QueryOperators; exports.clientToDbOptions = _chunkPZIZKSMQcjs.clientToDbOptions; exports.deepEquals = _chunkPZIZKSMQcjs.deepEquals; exports.expectedVersion = _chunkPZIZKSMQcjs.expectedVersion; exports.expectedVersionValue = _chunkPZIZKSMQcjs.expectedVersionValue; exports.getPongoDb = _chunkPZIZKSMQcjs.getPongoDb; exports.hasOperators = _chunkPZIZKSMQcjs.hasOperators; exports.isEquatable = _chunkPZIZKSMQcjs.isEquatable; exports.isGeneralExpectedDocumentVersion = _chunkPZIZKSMQcjs.isGeneralExpectedDocumentVersion; exports.isNumber = _chunkPZIZKSMQcjs.isNumber; exports.isOperator = _chunkPZIZKSMQcjs.isOperator; exports.isPostgresClientOptions = _chunkPZIZKSMQcjs.isPostgresClientOptions; exports.isString = _chunkPZIZKSMQcjs.isString; exports.objectEntries = _chunkPZIZKSMQcjs.objectEntries; exports.operationResult = _chunkPZIZKSMQcjs.operationResult; exports.pongoClient = _chunkPZIZKSMQcjs.pongoClient; exports.pongoCollection = _chunkPZIZKSMQcjs.pongoCollection; exports.pongoCollectionPostgreSQLMigrations = _chunkPZIZKSMQcjs.pongoCollectionPostgreSQLMigrations; exports.pongoCollectionSchemaComponent = _chunkPZIZKSMQcjs.pongoCollectionSchemaComponent; exports.pongoDbSchemaComponent = _chunkPZIZKSMQcjs.pongoDbSchemaComponent; exports.pongoSchema = _chunkPZIZKSMQcjs.pongoSchema; exports.pongoSession = _chunkPZIZKSMQcjs.pongoSession; exports.pongoTransaction = _chunkPZIZKSMQcjs.pongoTransaction; exports.postgresDb = _chunkPZIZKSMQcjs.postgresDb; exports.postgresSQLBuilder = _chunkPZIZKSMQcjs.postgresSQLBuilder; exports.proxyClientWithSchema = _chunkPZIZKSMQcjs.proxyClientWithSchema; exports.proxyPongoDbWithSchema = _chunkPZIZKSMQcjs.proxyPongoDbWithSchema; exports.toClientSchemaMetadata = _chunkPZIZKSMQcjs.toClientSchemaMetadata; exports.toDbSchemaMetadata = _chunkPZIZKSMQcjs.toDbSchemaMetadata; exports.transactionExecutorOrDefault = _chunkPZIZKSMQcjs.transactionExecutorOrDefault;
|
|
79
79
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Dumbo, SQLMigration, SQL, MigrationStyle, SchemaComponent, SQLExecutor } from '@event-driven-io/dumbo';
|
|
2
|
-
import { P as PongoDocument, a as PongoDb, O as OptionalUnlessRequiredIdAndVersion, b as PongoFilter, c as PongoUpdate, U as UpdateOneOptions, W as WithoutId, R as ReplaceOneOptions, D as DeleteOneOptions, d as PongoCollection, C as CollectionOperationOptions, e as PongoTransactionOptions, f as PongoSession, g as PongoDbTransaction } from './pongoClient-
|
|
3
|
-
export { $ as $inc, h as $push, i as $set, j as $unset, A as AllowedDbClientOptions, k as AlternativeType, l as CollectionsMap, m as Condition, n as DBsMap, o as DOCUMENT_DOES_NOT_EXIST, p as DOCUMENT_EXISTS, q as DeleteManyOptions, r as Document, s as DocumentHandler, E as EnhancedOmit, t as ExpectedDocumentVersion, u as ExpectedDocumentVersionGeneral, v as ExpectedDocumentVersionValue, H as HandleOptions, w as HasId, I as InferIdType, x as InsertManyOptions, y as InsertOneOptions, N as NO_CONCURRENCY_CHECK, z as NonObjectIdLikeDocument, B as NotPooledPongoOptions, F as ObjectId, G as ObjectIdLike, J as OperationResult, K as OptionalId, L as OptionalUnlessRequiredId, M as OptionalUnlessRequiredVersion, Q as OptionalVersion, S as PongoClient, T as PongoClientOptions, V as PongoClientSchema, X as PongoClientSchemaMetadata, Y as PongoClientWithSchema, Z as PongoCollectionSchema, _ as PongoCollectionSchemaMetadata, a0 as PongoDBCollectionOptions, a1 as PongoDbClientOptions, a2 as PongoDbSchema, a3 as PongoDbSchemaMetadata, a4 as PongoDbWithSchema, a5 as PongoDeleteManyResult, a6 as PongoDeleteResult, a7 as PongoFilterOperator, a8 as PongoHandleResult, a9 as PongoInsertManyResult, aa as PongoInsertOneResult, ab as PongoMigrationOptions, ac as PongoSchemaConfig, ad as PongoUpdateManyResult, ae as PongoUpdateResult, af as PooledPongoClientOptions, ag as PostgresDbClientOptions, ah as RegExpOrString, ai as RootFilterOperators, aj as UpdateManyOptions, ak as WithId, al as WithIdAndVersion, am as WithVersion, an as WithoutIdAndVersion, ao as WithoutVersion, ap as clientToDbOptions, aq as expectedVersion, ar as expectedVersionValue, as as getPongoDb, at as isGeneralExpectedDocumentVersion, au as isPostgresClientOptions, av as operationResult, aw as pongoClient, ax as pongoDbSchemaComponent, ay as pongoSchema, az as postgresDb, aA as proxyClientWithSchema, aB as proxyPongoDbWithSchema, aC as toClientSchemaMetadata, aD as toDbSchemaMetadata } from './pongoClient-
|
|
2
|
+
import { P as PongoDocument, a as PongoDb, O as OptionalUnlessRequiredIdAndVersion, b as PongoFilter, c as PongoUpdate, U as UpdateOneOptions, W as WithoutId, R as ReplaceOneOptions, D as DeleteOneOptions, d as PongoCollection, C as CollectionOperationOptions, e as PongoTransactionOptions, f as PongoSession, g as PongoDbTransaction } from './pongoClient-kJ3Z8DcU.cjs';
|
|
3
|
+
export { $ as $inc, h as $push, i as $set, j as $unset, A as AllowedDbClientOptions, k as AlternativeType, l as CollectionsMap, m as Condition, n as DBsMap, o as DOCUMENT_DOES_NOT_EXIST, p as DOCUMENT_EXISTS, q as DeleteManyOptions, r as Document, s as DocumentHandler, E as EnhancedOmit, t as ExpectedDocumentVersion, u as ExpectedDocumentVersionGeneral, v as ExpectedDocumentVersionValue, H as HandleOptions, w as HasId, I as InferIdType, x as InsertManyOptions, y as InsertOneOptions, N as NO_CONCURRENCY_CHECK, z as NonObjectIdLikeDocument, B as NotPooledPongoOptions, F as ObjectId, G as ObjectIdLike, J as OperationResult, K as OptionalId, L as OptionalUnlessRequiredId, M as OptionalUnlessRequiredVersion, Q as OptionalVersion, S as PongoClient, T as PongoClientOptions, V as PongoClientSchema, X as PongoClientSchemaMetadata, Y as PongoClientWithSchema, Z as PongoCollectionSchema, _ as PongoCollectionSchemaMetadata, a0 as PongoDBCollectionOptions, a1 as PongoDbClientOptions, a2 as PongoDbSchema, a3 as PongoDbSchemaMetadata, a4 as PongoDbWithSchema, a5 as PongoDeleteManyResult, a6 as PongoDeleteResult, a7 as PongoFilterOperator, a8 as PongoHandleResult, a9 as PongoInsertManyResult, aa as PongoInsertOneResult, ab as PongoMigrationOptions, ac as PongoSchemaConfig, ad as PongoUpdateManyResult, ae as PongoUpdateResult, af as PooledPongoClientOptions, ag as PostgresDbClientOptions, ah as RegExpOrString, ai as RootFilterOperators, aj as UpdateManyOptions, ak as WithId, al as WithIdAndVersion, am as WithVersion, an as WithoutIdAndVersion, ao as WithoutVersion, ap as clientToDbOptions, aq as expectedVersion, ar as expectedVersionValue, as as getPongoDb, at as isGeneralExpectedDocumentVersion, au as isPostgresClientOptions, av as operationResult, aw as pongoClient, ax as pongoDbSchemaComponent, ay as pongoSchema, az as postgresDb, aA as proxyClientWithSchema, aB as proxyPongoDbWithSchema, aC as toClientSchemaMetadata, aD as toDbSchemaMetadata } from './pongoClient-kJ3Z8DcU.cjs';
|
|
4
4
|
import 'pg';
|
|
5
5
|
|
|
6
6
|
type PongoCollectionOptions<T extends PongoDocument = PongoDocument, ConnectorType extends string = string, Payload extends PongoDocument = T> = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Dumbo, SQLMigration, SQL, MigrationStyle, SchemaComponent, SQLExecutor } from '@event-driven-io/dumbo';
|
|
2
|
-
import { P as PongoDocument, a as PongoDb, O as OptionalUnlessRequiredIdAndVersion, b as PongoFilter, c as PongoUpdate, U as UpdateOneOptions, W as WithoutId, R as ReplaceOneOptions, D as DeleteOneOptions, d as PongoCollection, C as CollectionOperationOptions, e as PongoTransactionOptions, f as PongoSession, g as PongoDbTransaction } from './pongoClient-
|
|
3
|
-
export { $ as $inc, h as $push, i as $set, j as $unset, A as AllowedDbClientOptions, k as AlternativeType, l as CollectionsMap, m as Condition, n as DBsMap, o as DOCUMENT_DOES_NOT_EXIST, p as DOCUMENT_EXISTS, q as DeleteManyOptions, r as Document, s as DocumentHandler, E as EnhancedOmit, t as ExpectedDocumentVersion, u as ExpectedDocumentVersionGeneral, v as ExpectedDocumentVersionValue, H as HandleOptions, w as HasId, I as InferIdType, x as InsertManyOptions, y as InsertOneOptions, N as NO_CONCURRENCY_CHECK, z as NonObjectIdLikeDocument, B as NotPooledPongoOptions, F as ObjectId, G as ObjectIdLike, J as OperationResult, K as OptionalId, L as OptionalUnlessRequiredId, M as OptionalUnlessRequiredVersion, Q as OptionalVersion, S as PongoClient, T as PongoClientOptions, V as PongoClientSchema, X as PongoClientSchemaMetadata, Y as PongoClientWithSchema, Z as PongoCollectionSchema, _ as PongoCollectionSchemaMetadata, a0 as PongoDBCollectionOptions, a1 as PongoDbClientOptions, a2 as PongoDbSchema, a3 as PongoDbSchemaMetadata, a4 as PongoDbWithSchema, a5 as PongoDeleteManyResult, a6 as PongoDeleteResult, a7 as PongoFilterOperator, a8 as PongoHandleResult, a9 as PongoInsertManyResult, aa as PongoInsertOneResult, ab as PongoMigrationOptions, ac as PongoSchemaConfig, ad as PongoUpdateManyResult, ae as PongoUpdateResult, af as PooledPongoClientOptions, ag as PostgresDbClientOptions, ah as RegExpOrString, ai as RootFilterOperators, aj as UpdateManyOptions, ak as WithId, al as WithIdAndVersion, am as WithVersion, an as WithoutIdAndVersion, ao as WithoutVersion, ap as clientToDbOptions, aq as expectedVersion, ar as expectedVersionValue, as as getPongoDb, at as isGeneralExpectedDocumentVersion, au as isPostgresClientOptions, av as operationResult, aw as pongoClient, ax as pongoDbSchemaComponent, ay as pongoSchema, az as postgresDb, aA as proxyClientWithSchema, aB as proxyPongoDbWithSchema, aC as toClientSchemaMetadata, aD as toDbSchemaMetadata } from './pongoClient-
|
|
2
|
+
import { P as PongoDocument, a as PongoDb, O as OptionalUnlessRequiredIdAndVersion, b as PongoFilter, c as PongoUpdate, U as UpdateOneOptions, W as WithoutId, R as ReplaceOneOptions, D as DeleteOneOptions, d as PongoCollection, C as CollectionOperationOptions, e as PongoTransactionOptions, f as PongoSession, g as PongoDbTransaction } from './pongoClient-kJ3Z8DcU.js';
|
|
3
|
+
export { $ as $inc, h as $push, i as $set, j as $unset, A as AllowedDbClientOptions, k as AlternativeType, l as CollectionsMap, m as Condition, n as DBsMap, o as DOCUMENT_DOES_NOT_EXIST, p as DOCUMENT_EXISTS, q as DeleteManyOptions, r as Document, s as DocumentHandler, E as EnhancedOmit, t as ExpectedDocumentVersion, u as ExpectedDocumentVersionGeneral, v as ExpectedDocumentVersionValue, H as HandleOptions, w as HasId, I as InferIdType, x as InsertManyOptions, y as InsertOneOptions, N as NO_CONCURRENCY_CHECK, z as NonObjectIdLikeDocument, B as NotPooledPongoOptions, F as ObjectId, G as ObjectIdLike, J as OperationResult, K as OptionalId, L as OptionalUnlessRequiredId, M as OptionalUnlessRequiredVersion, Q as OptionalVersion, S as PongoClient, T as PongoClientOptions, V as PongoClientSchema, X as PongoClientSchemaMetadata, Y as PongoClientWithSchema, Z as PongoCollectionSchema, _ as PongoCollectionSchemaMetadata, a0 as PongoDBCollectionOptions, a1 as PongoDbClientOptions, a2 as PongoDbSchema, a3 as PongoDbSchemaMetadata, a4 as PongoDbWithSchema, a5 as PongoDeleteManyResult, a6 as PongoDeleteResult, a7 as PongoFilterOperator, a8 as PongoHandleResult, a9 as PongoInsertManyResult, aa as PongoInsertOneResult, ab as PongoMigrationOptions, ac as PongoSchemaConfig, ad as PongoUpdateManyResult, ae as PongoUpdateResult, af as PooledPongoClientOptions, ag as PostgresDbClientOptions, ah as RegExpOrString, ai as RootFilterOperators, aj as UpdateManyOptions, ak as WithId, al as WithIdAndVersion, am as WithVersion, an as WithoutIdAndVersion, ao as WithoutVersion, ap as clientToDbOptions, aq as expectedVersion, ar as expectedVersionValue, as as getPongoDb, at as isGeneralExpectedDocumentVersion, au as isPostgresClientOptions, av as operationResult, aw as pongoClient, ax as pongoDbSchemaComponent, ay as pongoSchema, az as postgresDb, aA as proxyClientWithSchema, aB as proxyPongoDbWithSchema, aC as toClientSchemaMetadata, aD as toDbSchemaMetadata } from './pongoClient-kJ3Z8DcU.js';
|
|
4
4
|
import 'pg';
|
|
5
5
|
|
|
6
6
|
type PongoCollectionOptions<T extends PongoDocument = PongoDocument, ConnectorType extends string = string, Payload extends PongoDocument = T> = {
|
package/dist/index.js
CHANGED
|
@@ -67,6 +67,7 @@ interface PongoDb<ConnectorType extends string = string> extends DatabaseTransac
|
|
|
67
67
|
type PongoMigrationOptions = {
|
|
68
68
|
dryRun?: boolean | undefined;
|
|
69
69
|
ignoreMigrationHashMismatch?: boolean | undefined;
|
|
70
|
+
migrationTimeoutMs?: number | undefined;
|
|
70
71
|
};
|
|
71
72
|
type CollectionOperationOptions = {
|
|
72
73
|
session?: PongoSession;
|
|
@@ -67,6 +67,7 @@ interface PongoDb<ConnectorType extends string = string> extends DatabaseTransac
|
|
|
67
67
|
type PongoMigrationOptions = {
|
|
68
68
|
dryRun?: boolean | undefined;
|
|
69
69
|
ignoreMigrationHashMismatch?: boolean | undefined;
|
|
70
|
+
migrationTimeoutMs?: number | undefined;
|
|
70
71
|
};
|
|
71
72
|
type CollectionOperationOptions = {
|
|
72
73
|
session?: PongoSession;
|