realitydb 0.1.1 → 0.1.2
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/index.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -7141,7 +7141,7 @@ async function packImportCommand(filePath, options) {
|
|
|
7141
7141
|
// src/cli.ts
|
|
7142
7142
|
function run(argv) {
|
|
7143
7143
|
const program2 = new Command();
|
|
7144
|
-
program2.name("realitydb").description("RealityDB \u2014 Developer Reality Platform").version("0.1.
|
|
7144
|
+
program2.name("realitydb").description("RealityDB \u2014 Developer Reality Platform").version("0.1.2").option("--config <path>", "Path to config file").option("--verbose", "Enable verbose output", false);
|
|
7145
7145
|
program2.command("scan").description("Scan database schema").action(scanCommand);
|
|
7146
7146
|
program2.command("seed").description("Seed database with generated data").option("--records <count>", "Number of records per table").option("--template <name>", "Template to use").option("--seed <number>", "Random seed for reproducibility").option("--timeline <duration>", 'Timeline duration (e.g., "12-months", "1-year")').option("--scenario <names>", "Scenarios to apply (comma-separated)").option("--scenario-intensity <level>", "Scenario intensity (low|medium|high)", "medium").action(seedCommand);
|
|
7147
7147
|
program2.command("reset").description("Reset seeded data").option("--confirm", "Confirm destructive operation").action(resetCommand);
|
|
@@ -7153,7 +7153,7 @@ function run(argv) {
|
|
|
7153
7153
|
pack.command("import <file>").description("Import Reality Pack into database").option("--confirm", "Confirm import operation").action(packImportCommand);
|
|
7154
7154
|
program2.action(() => {
|
|
7155
7155
|
console.log("");
|
|
7156
|
-
console.log("RealityDB v0.1.
|
|
7156
|
+
console.log("RealityDB v0.1.2 \u2014 Developer Reality Platform");
|
|
7157
7157
|
console.log("Run `realitydb --help` for available commands.");
|
|
7158
7158
|
console.log("");
|
|
7159
7159
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "realitydb",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Developer Reality Platform
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Developer Reality Platform - realistic database environments from your schema",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"database",
|