@memberjunction/cli 5.30.0 → 5.31.0
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/commands/migrate/convert.d.ts +39 -0
- package/dist/commands/migrate/convert.d.ts.map +1 -0
- package/dist/commands/migrate/convert.js +207 -0
- package/dist/commands/migrate/convert.js.map +1 -0
- package/dist/commands/migrate/create.d.ts +42 -0
- package/dist/commands/migrate/create.d.ts.map +1 -0
- package/dist/commands/migrate/create.js +174 -0
- package/dist/commands/migrate/create.js.map +1 -0
- package/dist/commands/sync/pull.d.ts +2 -0
- package/dist/commands/sync/pull.d.ts.map +1 -1
- package/dist/commands/sync/pull.js +19 -2
- package/dist/commands/sync/pull.js.map +1 -1
- package/dist/commands/sync/push.d.ts +1 -0
- package/dist/commands/sync/push.d.ts.map +1 -1
- package/dist/commands/sync/push.js +32 -3
- package/dist/commands/sync/push.js.map +1 -1
- package/dist/commands/translate-sql/index.js +2 -2
- package/dist/commands/translate-sql/index.js.map +1 -1
- package/dist/config.d.ts +6 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +58 -13
- package/dist/config.js.map +1 -1
- package/dist/light-commands.d.ts.map +1 -1
- package/dist/light-commands.js +2 -0
- package/dist/light-commands.js.map +1 -1
- package/oclif.manifest.json +294 -130
- package/package.json +17 -15
package/oclif.manifest.json
CHANGED
|
@@ -1454,6 +1454,151 @@
|
|
|
1454
1454
|
"index.js"
|
|
1455
1455
|
]
|
|
1456
1456
|
},
|
|
1457
|
+
"migrate:convert": {
|
|
1458
|
+
"aliases": [],
|
|
1459
|
+
"args": {},
|
|
1460
|
+
"description": "Convert T-SQL migrations to PostgreSQL using the BatchConverter pipeline",
|
|
1461
|
+
"examples": [
|
|
1462
|
+
"<%= config.bin %> migrate convert",
|
|
1463
|
+
"<%= config.bin %> migrate convert --dry-run",
|
|
1464
|
+
"<%= config.bin %> migrate convert --file V202604060452__v5.24.x__KnowledgeHub.sql",
|
|
1465
|
+
"<%= config.bin %> migrate convert --source-dir ./migrations/v5 --output-dir ./migrations-pg/v5",
|
|
1466
|
+
"<%= config.bin %> migrate convert --verbose"
|
|
1467
|
+
],
|
|
1468
|
+
"flags": {
|
|
1469
|
+
"source-dir": {
|
|
1470
|
+
"description": "Source T-SQL migrations directory",
|
|
1471
|
+
"name": "source-dir",
|
|
1472
|
+
"default": "./migrations/v5",
|
|
1473
|
+
"hasDynamicHelp": false,
|
|
1474
|
+
"multiple": false,
|
|
1475
|
+
"type": "option"
|
|
1476
|
+
},
|
|
1477
|
+
"output-dir": {
|
|
1478
|
+
"description": "Output PG migrations directory",
|
|
1479
|
+
"name": "output-dir",
|
|
1480
|
+
"default": "./migrations-pg/v5",
|
|
1481
|
+
"hasDynamicHelp": false,
|
|
1482
|
+
"multiple": false,
|
|
1483
|
+
"type": "option"
|
|
1484
|
+
},
|
|
1485
|
+
"file": {
|
|
1486
|
+
"description": "Convert a specific file (filename only, looked up in source-dir)",
|
|
1487
|
+
"name": "file",
|
|
1488
|
+
"hasDynamicHelp": false,
|
|
1489
|
+
"multiple": false,
|
|
1490
|
+
"type": "option"
|
|
1491
|
+
},
|
|
1492
|
+
"schema": {
|
|
1493
|
+
"description": "Target schema name",
|
|
1494
|
+
"name": "schema",
|
|
1495
|
+
"default": "__mj",
|
|
1496
|
+
"hasDynamicHelp": false,
|
|
1497
|
+
"multiple": false,
|
|
1498
|
+
"type": "option"
|
|
1499
|
+
},
|
|
1500
|
+
"dry-run": {
|
|
1501
|
+
"description": "Show what would be converted without writing files",
|
|
1502
|
+
"name": "dry-run",
|
|
1503
|
+
"allowNo": false,
|
|
1504
|
+
"type": "boolean"
|
|
1505
|
+
},
|
|
1506
|
+
"no-header": {
|
|
1507
|
+
"description": "Skip PG header (extensions, schema, implicit cast)",
|
|
1508
|
+
"name": "no-header",
|
|
1509
|
+
"allowNo": false,
|
|
1510
|
+
"type": "boolean"
|
|
1511
|
+
},
|
|
1512
|
+
"verbose": {
|
|
1513
|
+
"char": "v",
|
|
1514
|
+
"description": "Show per-statement progress",
|
|
1515
|
+
"name": "verbose",
|
|
1516
|
+
"allowNo": false,
|
|
1517
|
+
"type": "boolean"
|
|
1518
|
+
}
|
|
1519
|
+
},
|
|
1520
|
+
"hasDynamicHelp": false,
|
|
1521
|
+
"hiddenAliases": [],
|
|
1522
|
+
"id": "migrate:convert",
|
|
1523
|
+
"pluginAlias": "@memberjunction/cli",
|
|
1524
|
+
"pluginName": "@memberjunction/cli",
|
|
1525
|
+
"pluginType": "core",
|
|
1526
|
+
"strict": true,
|
|
1527
|
+
"enableJsonFlag": false,
|
|
1528
|
+
"isESM": true,
|
|
1529
|
+
"relativePath": [
|
|
1530
|
+
"dist",
|
|
1531
|
+
"commands",
|
|
1532
|
+
"migrate",
|
|
1533
|
+
"convert.js"
|
|
1534
|
+
]
|
|
1535
|
+
},
|
|
1536
|
+
"migrate:create": {
|
|
1537
|
+
"aliases": [],
|
|
1538
|
+
"args": {
|
|
1539
|
+
"description": {
|
|
1540
|
+
"description": "Short description (will be converted to PascalCase with underscores)",
|
|
1541
|
+
"name": "description",
|
|
1542
|
+
"required": true
|
|
1543
|
+
}
|
|
1544
|
+
},
|
|
1545
|
+
"description": "Scaffold a new migration file for the current database platform",
|
|
1546
|
+
"examples": [
|
|
1547
|
+
"<%= config.bin %> <%= command.id %> \"Add FooID to Bar\"",
|
|
1548
|
+
"<%= config.bin %> <%= command.id %> \"Add FooID to Bar\" --version 5.25 --platform postgresql",
|
|
1549
|
+
"<%= config.bin %> <%= command.id %> \"Add FooID to Bar\" --dir ./migrations/v5"
|
|
1550
|
+
],
|
|
1551
|
+
"flags": {
|
|
1552
|
+
"version": {
|
|
1553
|
+
"char": "v",
|
|
1554
|
+
"description": "Migration version tag, e.g. \"5.25\" (default: parsed from repo baseline or \"0.0\")",
|
|
1555
|
+
"name": "version",
|
|
1556
|
+
"hasDynamicHelp": false,
|
|
1557
|
+
"multiple": false,
|
|
1558
|
+
"type": "option"
|
|
1559
|
+
},
|
|
1560
|
+
"platform": {
|
|
1561
|
+
"char": "p",
|
|
1562
|
+
"description": "Override platform: sqlserver | postgresql (default: config.dbPlatform)",
|
|
1563
|
+
"name": "platform",
|
|
1564
|
+
"hasDynamicHelp": false,
|
|
1565
|
+
"multiple": false,
|
|
1566
|
+
"options": [
|
|
1567
|
+
"sqlserver",
|
|
1568
|
+
"postgresql"
|
|
1569
|
+
],
|
|
1570
|
+
"type": "option"
|
|
1571
|
+
},
|
|
1572
|
+
"dir": {
|
|
1573
|
+
"description": "Output directory (default: ./migrations/v5 or ./migrations-pg/v5)",
|
|
1574
|
+
"name": "dir",
|
|
1575
|
+
"hasDynamicHelp": false,
|
|
1576
|
+
"multiple": false,
|
|
1577
|
+
"type": "option"
|
|
1578
|
+
},
|
|
1579
|
+
"x-x": {
|
|
1580
|
+
"description": "Use {version}.x.x suffix instead of {version}.x (e.g. 5.25.x instead of 5.25.x)",
|
|
1581
|
+
"name": "x-x",
|
|
1582
|
+
"allowNo": false,
|
|
1583
|
+
"type": "boolean"
|
|
1584
|
+
}
|
|
1585
|
+
},
|
|
1586
|
+
"hasDynamicHelp": false,
|
|
1587
|
+
"hiddenAliases": [],
|
|
1588
|
+
"id": "migrate:create",
|
|
1589
|
+
"pluginAlias": "@memberjunction/cli",
|
|
1590
|
+
"pluginName": "@memberjunction/cli",
|
|
1591
|
+
"pluginType": "core",
|
|
1592
|
+
"strict": true,
|
|
1593
|
+
"enableJsonFlag": false,
|
|
1594
|
+
"isESM": true,
|
|
1595
|
+
"relativePath": [
|
|
1596
|
+
"dist",
|
|
1597
|
+
"commands",
|
|
1598
|
+
"migrate",
|
|
1599
|
+
"create.js"
|
|
1600
|
+
]
|
|
1601
|
+
},
|
|
1457
1602
|
"migrate": {
|
|
1458
1603
|
"aliases": [],
|
|
1459
1604
|
"args": {},
|
|
@@ -2081,6 +2226,19 @@
|
|
|
2081
2226
|
"hasDynamicHelp": false,
|
|
2082
2227
|
"multiple": false,
|
|
2083
2228
|
"type": "option"
|
|
2229
|
+
},
|
|
2230
|
+
"incremental": {
|
|
2231
|
+
"description": "Only pull records updated since last successful pull",
|
|
2232
|
+
"name": "incremental",
|
|
2233
|
+
"allowNo": false,
|
|
2234
|
+
"type": "boolean"
|
|
2235
|
+
},
|
|
2236
|
+
"since": {
|
|
2237
|
+
"description": "Only pull records updated after this ISO 8601 timestamp (e.g., 2026-04-07T10:00:00Z)",
|
|
2238
|
+
"name": "since",
|
|
2239
|
+
"hasDynamicHelp": false,
|
|
2240
|
+
"multiple": false,
|
|
2241
|
+
"type": "option"
|
|
2084
2242
|
}
|
|
2085
2243
|
},
|
|
2086
2244
|
"hasDynamicHelp": false,
|
|
@@ -2169,6 +2327,12 @@
|
|
|
2169
2327
|
"hasDynamicHelp": false,
|
|
2170
2328
|
"multiple": false,
|
|
2171
2329
|
"type": "option"
|
|
2330
|
+
},
|
|
2331
|
+
"incremental": {
|
|
2332
|
+
"description": "Skip unchanged files using stored checksums from last push",
|
|
2333
|
+
"name": "incremental",
|
|
2334
|
+
"allowNo": false,
|
|
2335
|
+
"type": "boolean"
|
|
2172
2336
|
}
|
|
2173
2337
|
},
|
|
2174
2338
|
"hasDynamicHelp": false,
|
|
@@ -3117,135 +3281,6 @@
|
|
|
3117
3281
|
"run.js"
|
|
3118
3282
|
]
|
|
3119
3283
|
},
|
|
3120
|
-
"ai:agents:list": {
|
|
3121
|
-
"aliases": [],
|
|
3122
|
-
"args": {},
|
|
3123
|
-
"description": "List available AI agents",
|
|
3124
|
-
"examples": [
|
|
3125
|
-
"<%= config.bin %> <%= command.id %>",
|
|
3126
|
-
"<%= config.bin %> <%= command.id %> --output=table",
|
|
3127
|
-
"<%= config.bin %> <%= command.id %> --output=json"
|
|
3128
|
-
],
|
|
3129
|
-
"flags": {
|
|
3130
|
-
"output": {
|
|
3131
|
-
"char": "o",
|
|
3132
|
-
"description": "Output format",
|
|
3133
|
-
"name": "output",
|
|
3134
|
-
"default": "compact",
|
|
3135
|
-
"hasDynamicHelp": false,
|
|
3136
|
-
"multiple": false,
|
|
3137
|
-
"options": [
|
|
3138
|
-
"compact",
|
|
3139
|
-
"json",
|
|
3140
|
-
"table"
|
|
3141
|
-
],
|
|
3142
|
-
"type": "option"
|
|
3143
|
-
}
|
|
3144
|
-
},
|
|
3145
|
-
"hasDynamicHelp": false,
|
|
3146
|
-
"hiddenAliases": [],
|
|
3147
|
-
"id": "ai:agents:list",
|
|
3148
|
-
"pluginAlias": "@memberjunction/cli",
|
|
3149
|
-
"pluginName": "@memberjunction/cli",
|
|
3150
|
-
"pluginType": "core",
|
|
3151
|
-
"strict": true,
|
|
3152
|
-
"enableJsonFlag": false,
|
|
3153
|
-
"isESM": true,
|
|
3154
|
-
"relativePath": [
|
|
3155
|
-
"dist",
|
|
3156
|
-
"commands",
|
|
3157
|
-
"ai",
|
|
3158
|
-
"agents",
|
|
3159
|
-
"list.js"
|
|
3160
|
-
]
|
|
3161
|
-
},
|
|
3162
|
-
"ai:agents:run": {
|
|
3163
|
-
"aliases": [],
|
|
3164
|
-
"args": {},
|
|
3165
|
-
"description": "Execute an AI agent with a prompt or start interactive chat",
|
|
3166
|
-
"examples": [
|
|
3167
|
-
"<%= config.bin %> <%= command.id %> -a \"Skip: Requirements Expert\" -p \"Create a dashboard for sales metrics\"",
|
|
3168
|
-
"<%= config.bin %> <%= command.id %> -a \"Child Component Generator Sub-agent\" --chat",
|
|
3169
|
-
"<%= config.bin %> <%= command.id %> -a \"Skip: Technical Design Expert\" -p \"Build a React component\" --verbose --timeout=600000"
|
|
3170
|
-
],
|
|
3171
|
-
"flags": {
|
|
3172
|
-
"agent": {
|
|
3173
|
-
"char": "a",
|
|
3174
|
-
"description": "Agent name",
|
|
3175
|
-
"name": "agent",
|
|
3176
|
-
"required": true,
|
|
3177
|
-
"hasDynamicHelp": false,
|
|
3178
|
-
"multiple": false,
|
|
3179
|
-
"type": "option"
|
|
3180
|
-
},
|
|
3181
|
-
"prompt": {
|
|
3182
|
-
"char": "p",
|
|
3183
|
-
"description": "Prompt to execute",
|
|
3184
|
-
"exclusive": [
|
|
3185
|
-
"chat"
|
|
3186
|
-
],
|
|
3187
|
-
"name": "prompt",
|
|
3188
|
-
"hasDynamicHelp": false,
|
|
3189
|
-
"multiple": false,
|
|
3190
|
-
"type": "option"
|
|
3191
|
-
},
|
|
3192
|
-
"chat": {
|
|
3193
|
-
"char": "c",
|
|
3194
|
-
"description": "Start interactive chat mode",
|
|
3195
|
-
"exclusive": [
|
|
3196
|
-
"prompt"
|
|
3197
|
-
],
|
|
3198
|
-
"name": "chat",
|
|
3199
|
-
"allowNo": false,
|
|
3200
|
-
"type": "boolean"
|
|
3201
|
-
},
|
|
3202
|
-
"output": {
|
|
3203
|
-
"char": "o",
|
|
3204
|
-
"description": "Output format",
|
|
3205
|
-
"name": "output",
|
|
3206
|
-
"default": "compact",
|
|
3207
|
-
"hasDynamicHelp": false,
|
|
3208
|
-
"multiple": false,
|
|
3209
|
-
"options": [
|
|
3210
|
-
"compact",
|
|
3211
|
-
"json",
|
|
3212
|
-
"table"
|
|
3213
|
-
],
|
|
3214
|
-
"type": "option"
|
|
3215
|
-
},
|
|
3216
|
-
"verbose": {
|
|
3217
|
-
"char": "v",
|
|
3218
|
-
"description": "Show detailed execution information",
|
|
3219
|
-
"name": "verbose",
|
|
3220
|
-
"allowNo": false,
|
|
3221
|
-
"type": "boolean"
|
|
3222
|
-
},
|
|
3223
|
-
"timeout": {
|
|
3224
|
-
"description": "Execution timeout in milliseconds",
|
|
3225
|
-
"name": "timeout",
|
|
3226
|
-
"default": 300000,
|
|
3227
|
-
"hasDynamicHelp": false,
|
|
3228
|
-
"multiple": false,
|
|
3229
|
-
"type": "option"
|
|
3230
|
-
}
|
|
3231
|
-
},
|
|
3232
|
-
"hasDynamicHelp": false,
|
|
3233
|
-
"hiddenAliases": [],
|
|
3234
|
-
"id": "ai:agents:run",
|
|
3235
|
-
"pluginAlias": "@memberjunction/cli",
|
|
3236
|
-
"pluginName": "@memberjunction/cli",
|
|
3237
|
-
"pluginType": "core",
|
|
3238
|
-
"strict": true,
|
|
3239
|
-
"enableJsonFlag": false,
|
|
3240
|
-
"isESM": true,
|
|
3241
|
-
"relativePath": [
|
|
3242
|
-
"dist",
|
|
3243
|
-
"commands",
|
|
3244
|
-
"ai",
|
|
3245
|
-
"agents",
|
|
3246
|
-
"run.js"
|
|
3247
|
-
]
|
|
3248
|
-
},
|
|
3249
3284
|
"ai:audit:agent-run": {
|
|
3250
3285
|
"aliases": [],
|
|
3251
3286
|
"args": {
|
|
@@ -3462,6 +3497,135 @@
|
|
|
3462
3497
|
"index.js"
|
|
3463
3498
|
]
|
|
3464
3499
|
},
|
|
3500
|
+
"ai:agents:list": {
|
|
3501
|
+
"aliases": [],
|
|
3502
|
+
"args": {},
|
|
3503
|
+
"description": "List available AI agents",
|
|
3504
|
+
"examples": [
|
|
3505
|
+
"<%= config.bin %> <%= command.id %>",
|
|
3506
|
+
"<%= config.bin %> <%= command.id %> --output=table",
|
|
3507
|
+
"<%= config.bin %> <%= command.id %> --output=json"
|
|
3508
|
+
],
|
|
3509
|
+
"flags": {
|
|
3510
|
+
"output": {
|
|
3511
|
+
"char": "o",
|
|
3512
|
+
"description": "Output format",
|
|
3513
|
+
"name": "output",
|
|
3514
|
+
"default": "compact",
|
|
3515
|
+
"hasDynamicHelp": false,
|
|
3516
|
+
"multiple": false,
|
|
3517
|
+
"options": [
|
|
3518
|
+
"compact",
|
|
3519
|
+
"json",
|
|
3520
|
+
"table"
|
|
3521
|
+
],
|
|
3522
|
+
"type": "option"
|
|
3523
|
+
}
|
|
3524
|
+
},
|
|
3525
|
+
"hasDynamicHelp": false,
|
|
3526
|
+
"hiddenAliases": [],
|
|
3527
|
+
"id": "ai:agents:list",
|
|
3528
|
+
"pluginAlias": "@memberjunction/cli",
|
|
3529
|
+
"pluginName": "@memberjunction/cli",
|
|
3530
|
+
"pluginType": "core",
|
|
3531
|
+
"strict": true,
|
|
3532
|
+
"enableJsonFlag": false,
|
|
3533
|
+
"isESM": true,
|
|
3534
|
+
"relativePath": [
|
|
3535
|
+
"dist",
|
|
3536
|
+
"commands",
|
|
3537
|
+
"ai",
|
|
3538
|
+
"agents",
|
|
3539
|
+
"list.js"
|
|
3540
|
+
]
|
|
3541
|
+
},
|
|
3542
|
+
"ai:agents:run": {
|
|
3543
|
+
"aliases": [],
|
|
3544
|
+
"args": {},
|
|
3545
|
+
"description": "Execute an AI agent with a prompt or start interactive chat",
|
|
3546
|
+
"examples": [
|
|
3547
|
+
"<%= config.bin %> <%= command.id %> -a \"Skip: Requirements Expert\" -p \"Create a dashboard for sales metrics\"",
|
|
3548
|
+
"<%= config.bin %> <%= command.id %> -a \"Child Component Generator Sub-agent\" --chat",
|
|
3549
|
+
"<%= config.bin %> <%= command.id %> -a \"Skip: Technical Design Expert\" -p \"Build a React component\" --verbose --timeout=600000"
|
|
3550
|
+
],
|
|
3551
|
+
"flags": {
|
|
3552
|
+
"agent": {
|
|
3553
|
+
"char": "a",
|
|
3554
|
+
"description": "Agent name",
|
|
3555
|
+
"name": "agent",
|
|
3556
|
+
"required": true,
|
|
3557
|
+
"hasDynamicHelp": false,
|
|
3558
|
+
"multiple": false,
|
|
3559
|
+
"type": "option"
|
|
3560
|
+
},
|
|
3561
|
+
"prompt": {
|
|
3562
|
+
"char": "p",
|
|
3563
|
+
"description": "Prompt to execute",
|
|
3564
|
+
"exclusive": [
|
|
3565
|
+
"chat"
|
|
3566
|
+
],
|
|
3567
|
+
"name": "prompt",
|
|
3568
|
+
"hasDynamicHelp": false,
|
|
3569
|
+
"multiple": false,
|
|
3570
|
+
"type": "option"
|
|
3571
|
+
},
|
|
3572
|
+
"chat": {
|
|
3573
|
+
"char": "c",
|
|
3574
|
+
"description": "Start interactive chat mode",
|
|
3575
|
+
"exclusive": [
|
|
3576
|
+
"prompt"
|
|
3577
|
+
],
|
|
3578
|
+
"name": "chat",
|
|
3579
|
+
"allowNo": false,
|
|
3580
|
+
"type": "boolean"
|
|
3581
|
+
},
|
|
3582
|
+
"output": {
|
|
3583
|
+
"char": "o",
|
|
3584
|
+
"description": "Output format",
|
|
3585
|
+
"name": "output",
|
|
3586
|
+
"default": "compact",
|
|
3587
|
+
"hasDynamicHelp": false,
|
|
3588
|
+
"multiple": false,
|
|
3589
|
+
"options": [
|
|
3590
|
+
"compact",
|
|
3591
|
+
"json",
|
|
3592
|
+
"table"
|
|
3593
|
+
],
|
|
3594
|
+
"type": "option"
|
|
3595
|
+
},
|
|
3596
|
+
"verbose": {
|
|
3597
|
+
"char": "v",
|
|
3598
|
+
"description": "Show detailed execution information",
|
|
3599
|
+
"name": "verbose",
|
|
3600
|
+
"allowNo": false,
|
|
3601
|
+
"type": "boolean"
|
|
3602
|
+
},
|
|
3603
|
+
"timeout": {
|
|
3604
|
+
"description": "Execution timeout in milliseconds",
|
|
3605
|
+
"name": "timeout",
|
|
3606
|
+
"default": 300000,
|
|
3607
|
+
"hasDynamicHelp": false,
|
|
3608
|
+
"multiple": false,
|
|
3609
|
+
"type": "option"
|
|
3610
|
+
}
|
|
3611
|
+
},
|
|
3612
|
+
"hasDynamicHelp": false,
|
|
3613
|
+
"hiddenAliases": [],
|
|
3614
|
+
"id": "ai:agents:run",
|
|
3615
|
+
"pluginAlias": "@memberjunction/cli",
|
|
3616
|
+
"pluginName": "@memberjunction/cli",
|
|
3617
|
+
"pluginType": "core",
|
|
3618
|
+
"strict": true,
|
|
3619
|
+
"enableJsonFlag": false,
|
|
3620
|
+
"isESM": true,
|
|
3621
|
+
"relativePath": [
|
|
3622
|
+
"dist",
|
|
3623
|
+
"commands",
|
|
3624
|
+
"ai",
|
|
3625
|
+
"agents",
|
|
3626
|
+
"run.js"
|
|
3627
|
+
]
|
|
3628
|
+
},
|
|
3465
3629
|
"ai:prompts:list": {
|
|
3466
3630
|
"aliases": [],
|
|
3467
3631
|
"args": {},
|
|
@@ -3602,5 +3766,5 @@
|
|
|
3602
3766
|
]
|
|
3603
3767
|
}
|
|
3604
3768
|
},
|
|
3605
|
-
"version": "5.
|
|
3769
|
+
"version": "5.31.0"
|
|
3606
3770
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.31.0",
|
|
5
5
|
"description": "MemberJunction command line tools",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"oclif"
|
|
@@ -54,20 +54,22 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@inquirer/prompts": "^8.2.0",
|
|
57
|
-
"@memberjunction/ai-cli": "5.
|
|
58
|
-
"@memberjunction/codegen-lib": "5.
|
|
59
|
-
"@memberjunction/config": "5.
|
|
60
|
-
"@memberjunction/core": "5.
|
|
61
|
-
"@memberjunction/installer": "5.
|
|
62
|
-
"@memberjunction/db-auto-doc": "5.
|
|
63
|
-
"@memberjunction/metadata-sync": "5.
|
|
64
|
-
"@memberjunction/open-app-engine": "5.
|
|
65
|
-
"@memberjunction/query-gen": "5.
|
|
66
|
-
"@memberjunction/server-bootstrap-lite": "5.
|
|
67
|
-
"@memberjunction/skyway-core": "^0.
|
|
68
|
-
"@memberjunction/
|
|
69
|
-
"@memberjunction/sqlserver
|
|
70
|
-
"@memberjunction/
|
|
57
|
+
"@memberjunction/ai-cli": "5.31.0",
|
|
58
|
+
"@memberjunction/codegen-lib": "5.31.0",
|
|
59
|
+
"@memberjunction/config": "5.31.0",
|
|
60
|
+
"@memberjunction/core": "5.31.0",
|
|
61
|
+
"@memberjunction/installer": "5.31.0",
|
|
62
|
+
"@memberjunction/db-auto-doc": "5.31.0",
|
|
63
|
+
"@memberjunction/metadata-sync": "5.31.0",
|
|
64
|
+
"@memberjunction/open-app-engine": "5.31.0",
|
|
65
|
+
"@memberjunction/query-gen": "5.31.0",
|
|
66
|
+
"@memberjunction/server-bootstrap-lite": "5.31.0",
|
|
67
|
+
"@memberjunction/skyway-core": "^0.6.0",
|
|
68
|
+
"@memberjunction/skyway-postgres": "^0.6.0",
|
|
69
|
+
"@memberjunction/skyway-sqlserver": "^0.6.0",
|
|
70
|
+
"@memberjunction/sql-converter": "5.31.0",
|
|
71
|
+
"@memberjunction/sqlserver-dataprovider": "5.31.0",
|
|
72
|
+
"@memberjunction/testing-cli": "5.31.0",
|
|
71
73
|
"@oclif/core": "^3.27.0",
|
|
72
74
|
"@oclif/plugin-help": "^6.2.37",
|
|
73
75
|
"@oclif/plugin-version": "^2.2.36",
|