@swell/cli 2.7.0 → 2.7.1
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/inspect/extensions.d.ts +49 -0
- package/dist/commands/inspect/extensions.js +424 -0
- package/dist/create-app-command.js +14 -6
- package/dist/lib/inspect/extensions.d.ts +267 -0
- package/dist/lib/inspect/extensions.js +690 -0
- package/oclif.manifest.json +65 -1
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -2409,6 +2409,70 @@
|
|
|
2409
2409
|
"content.js"
|
|
2410
2410
|
]
|
|
2411
2411
|
},
|
|
2412
|
+
"inspect:extensions": {
|
|
2413
|
+
"aliases": [],
|
|
2414
|
+
"args": {
|
|
2415
|
+
"identifier": {
|
|
2416
|
+
"description": "Resource identifier — see \"Identifier forms\" below.",
|
|
2417
|
+
"name": "identifier",
|
|
2418
|
+
"required": false
|
|
2419
|
+
}
|
|
2420
|
+
},
|
|
2421
|
+
"description": "Lists declared payment, shipping, and tax extensions across deployed apps, with status (activated, not activated, gateway missing, etc.) and bound function/component counts. Pass --app=<slug> or --app=. (current swell.json) to scope.\n\nPass an identifier to view a single extension as a synthesized JSON envelope (manifest + native_bindings + bound functions/components + required vs missing events), followed by a \"Next steps\" footer mixing runnable commands and merchant-UI instructions (prefixed \"(merchant)\").\n\nIdentifier forms:\n app.<app>.<extId> — full paste-back key (list column 1)\n <extId> — requires --app= scope\n\n24-char hex id is not accepted: extensions are a synthesized resource with no canonical record id.\n",
|
|
2422
|
+
"examples": [
|
|
2423
|
+
"swell inspect extensions",
|
|
2424
|
+
"swell inspect extensions --app=my-app",
|
|
2425
|
+
"swell inspect extensions app.my-app.revolut",
|
|
2426
|
+
"swell inspect extensions revolut --app=my-app",
|
|
2427
|
+
"swell inspect extensions app.my-app.revolut --json",
|
|
2428
|
+
"swell inspect extensions --live"
|
|
2429
|
+
],
|
|
2430
|
+
"flags": {
|
|
2431
|
+
"app": {
|
|
2432
|
+
"description": "Filter by app slug, or \".\" for current swell.json.",
|
|
2433
|
+
"name": "app",
|
|
2434
|
+
"hasDynamicHelp": false,
|
|
2435
|
+
"multiple": false,
|
|
2436
|
+
"type": "option"
|
|
2437
|
+
},
|
|
2438
|
+
"live": {
|
|
2439
|
+
"description": "Use live environment (default: test).",
|
|
2440
|
+
"name": "live",
|
|
2441
|
+
"allowNo": false,
|
|
2442
|
+
"type": "boolean"
|
|
2443
|
+
},
|
|
2444
|
+
"json": {
|
|
2445
|
+
"description": "Emit pure JSON without the \"Next steps\" footer. Detail mode only.",
|
|
2446
|
+
"name": "json",
|
|
2447
|
+
"allowNo": false,
|
|
2448
|
+
"type": "boolean"
|
|
2449
|
+
},
|
|
2450
|
+
"yes": {
|
|
2451
|
+
"char": "y",
|
|
2452
|
+
"description": "No-op; accepted for agent compatibility.",
|
|
2453
|
+
"hidden": true,
|
|
2454
|
+
"name": "yes",
|
|
2455
|
+
"allowNo": false,
|
|
2456
|
+
"type": "boolean"
|
|
2457
|
+
}
|
|
2458
|
+
},
|
|
2459
|
+
"hasDynamicHelp": false,
|
|
2460
|
+
"hiddenAliases": [],
|
|
2461
|
+
"id": "inspect:extensions",
|
|
2462
|
+
"pluginAlias": "@swell/cli",
|
|
2463
|
+
"pluginName": "@swell/cli",
|
|
2464
|
+
"pluginType": "core",
|
|
2465
|
+
"strict": true,
|
|
2466
|
+
"summary": "Platform extensions with activation chain.",
|
|
2467
|
+
"enableJsonFlag": false,
|
|
2468
|
+
"isESM": true,
|
|
2469
|
+
"relativePath": [
|
|
2470
|
+
"dist",
|
|
2471
|
+
"commands",
|
|
2472
|
+
"inspect",
|
|
2473
|
+
"extensions.js"
|
|
2474
|
+
]
|
|
2475
|
+
},
|
|
2412
2476
|
"inspect:functions": {
|
|
2413
2477
|
"aliases": [],
|
|
2414
2478
|
"args": {
|
|
@@ -3298,5 +3362,5 @@
|
|
|
3298
3362
|
]
|
|
3299
3363
|
}
|
|
3300
3364
|
},
|
|
3301
|
-
"version": "2.7.
|
|
3365
|
+
"version": "2.7.1"
|
|
3302
3366
|
}
|