checkly 8.15.0 → 8.16.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/ai-context/public-skills/checkly/SKILL.md +4 -2
- package/dist/ai-context/skills-command/references/communicate.md +8 -2
- package/dist/ai-context/skills-command/references/configure.md +23 -0
- package/dist/commands/deploy.js +3 -1
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/destroy.js +2 -1
- package/dist/commands/destroy.js.map +1 -1
- package/dist/commands/import/apply.d.ts +2 -0
- package/dist/commands/import/apply.js +29 -5
- package/dist/commands/import/apply.js.map +1 -1
- package/dist/commands/import/cancel.d.ts +4 -0
- package/dist/commands/import/cancel.js +39 -8
- package/dist/commands/import/cancel.js.map +1 -1
- package/dist/commands/import/commit.d.ts +4 -0
- package/dist/commands/import/commit.js +40 -5
- package/dist/commands/import/commit.js.map +1 -1
- package/dist/commands/import/plan.js +3 -0
- package/dist/commands/import/plan.js.map +1 -1
- package/dist/commands/incidents/create.js +2 -1
- package/dist/commands/incidents/create.js.map +1 -1
- package/dist/commands/incidents/resolve.js +2 -1
- package/dist/commands/incidents/resolve.js.map +1 -1
- package/dist/commands/incidents/update.js +2 -1
- package/dist/commands/incidents/update.js.map +1 -1
- package/dist/constructs/traceroute-request.d.ts +5 -2
- package/dist/formatters/check-result-detail.js +37 -7
- package/dist/formatters/check-result-detail.js.map +1 -1
- package/dist/helpers/command-preview.d.ts +9 -1
- package/dist/helpers/command-preview.js +6 -2
- package/dist/helpers/command-preview.js.map +1 -1
- package/dist/helpers/flags.d.ts +1 -0
- package/dist/helpers/flags.js +5 -0
- package/dist/helpers/flags.js.map +1 -1
- package/dist/helpers/import-plan-selection.d.ts +70 -0
- package/dist/helpers/import-plan-selection.js +146 -0
- package/dist/helpers/import-plan-selection.js.map +1 -0
- package/oclif.manifest.json +55 -2
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -2500,6 +2500,19 @@
|
|
|
2500
2500
|
"hasDynamicHelp": false,
|
|
2501
2501
|
"multiple": false,
|
|
2502
2502
|
"type": "option"
|
|
2503
|
+
},
|
|
2504
|
+
"plan-id": {
|
|
2505
|
+
"description": "Target a specific import plan by ID, skipping interactive plan selection.",
|
|
2506
|
+
"name": "plan-id",
|
|
2507
|
+
"hasDynamicHelp": false,
|
|
2508
|
+
"multiple": false,
|
|
2509
|
+
"type": "option"
|
|
2510
|
+
},
|
|
2511
|
+
"no-commit": {
|
|
2512
|
+
"description": "Apply only. Leave the plan pending and skip the commit prompt.",
|
|
2513
|
+
"name": "no-commit",
|
|
2514
|
+
"allowNo": false,
|
|
2515
|
+
"type": "boolean"
|
|
2503
2516
|
}
|
|
2504
2517
|
},
|
|
2505
2518
|
"hasDynamicHelp": false,
|
|
@@ -2541,6 +2554,26 @@
|
|
|
2541
2554
|
"name": "all",
|
|
2542
2555
|
"allowNo": false,
|
|
2543
2556
|
"type": "boolean"
|
|
2557
|
+
},
|
|
2558
|
+
"plan-id": {
|
|
2559
|
+
"description": "Target a specific import plan by ID, skipping interactive plan selection.",
|
|
2560
|
+
"name": "plan-id",
|
|
2561
|
+
"hasDynamicHelp": false,
|
|
2562
|
+
"multiple": false,
|
|
2563
|
+
"type": "option"
|
|
2564
|
+
},
|
|
2565
|
+
"force": {
|
|
2566
|
+
"char": "f",
|
|
2567
|
+
"description": "Skip confirmation prompt.",
|
|
2568
|
+
"name": "force",
|
|
2569
|
+
"allowNo": false,
|
|
2570
|
+
"type": "boolean"
|
|
2571
|
+
},
|
|
2572
|
+
"dry-run": {
|
|
2573
|
+
"description": "Preview what would happen without executing.",
|
|
2574
|
+
"name": "dry-run",
|
|
2575
|
+
"allowNo": false,
|
|
2576
|
+
"type": "boolean"
|
|
2544
2577
|
}
|
|
2545
2578
|
},
|
|
2546
2579
|
"hasDynamicHelp": false,
|
|
@@ -2554,7 +2587,7 @@
|
|
|
2554
2587
|
"enableJsonFlag": false,
|
|
2555
2588
|
"coreCommand": false,
|
|
2556
2589
|
"readOnly": false,
|
|
2557
|
-
"destructive":
|
|
2590
|
+
"destructive": true,
|
|
2558
2591
|
"idempotent": true,
|
|
2559
2592
|
"isESM": true,
|
|
2560
2593
|
"relativePath": [
|
|
@@ -2576,6 +2609,26 @@
|
|
|
2576
2609
|
"hasDynamicHelp": false,
|
|
2577
2610
|
"multiple": false,
|
|
2578
2611
|
"type": "option"
|
|
2612
|
+
},
|
|
2613
|
+
"plan-id": {
|
|
2614
|
+
"description": "Target a specific import plan by ID, skipping interactive plan selection.",
|
|
2615
|
+
"name": "plan-id",
|
|
2616
|
+
"hasDynamicHelp": false,
|
|
2617
|
+
"multiple": false,
|
|
2618
|
+
"type": "option"
|
|
2619
|
+
},
|
|
2620
|
+
"force": {
|
|
2621
|
+
"char": "f",
|
|
2622
|
+
"description": "Skip confirmation prompt.",
|
|
2623
|
+
"name": "force",
|
|
2624
|
+
"allowNo": false,
|
|
2625
|
+
"type": "boolean"
|
|
2626
|
+
},
|
|
2627
|
+
"dry-run": {
|
|
2628
|
+
"description": "Preview what would happen without executing.",
|
|
2629
|
+
"name": "dry-run",
|
|
2630
|
+
"allowNo": false,
|
|
2631
|
+
"type": "boolean"
|
|
2579
2632
|
}
|
|
2580
2633
|
},
|
|
2581
2634
|
"hasDynamicHelp": false,
|
|
@@ -3729,5 +3782,5 @@
|
|
|
3729
3782
|
]
|
|
3730
3783
|
}
|
|
3731
3784
|
},
|
|
3732
|
-
"version": "8.
|
|
3785
|
+
"version": "8.16.0"
|
|
3733
3786
|
}
|